forked from vierge-noire/cakephp-fixture-factories
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 2.1 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "vierge-noire/cakephp-fixture-factories",
"description": "CakePHP Dynamic Fixtures",
"type": "cakephp-plugin",
"keywords": ["cakephp", "tests", "dynamic", "fixtures"],
"authors": [
{
"name": "Nicolas Masson",
"email": "nicolas@b-projects.tech"
},
{
"name": "Juan Pablo Ramìrez",
"email": "pabloelcolombiano@gmail.com"
}
],
"license": "MIT",
"minimum-stability": "dev",
"require": {
"php": ">=7.2",
"cakephp/orm": "^4.2",
"fakerphp/faker": "^1.15",
"vierge-noire/cakephp-test-suite-light": "^2.1"
},
"require-dev": {
"cakephp/bake": "^2.0",
"cakephp/cakephp-codesniffer": "^4.0",
"cakephp/migrations": "^3.1",
"josegonzalez/dotenv": "dev-master",
"phpstan/phpstan": "^0.12.48@dev",
"phpunit/phpunit": "^8.0",
"vierge-noire/cakephp-test-migrator": "^2.1",
"vimeo/psalm": "^4.0"
},
"autoload": {
"psr-4": {
"CakephpFixtureFactories\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CakephpFixtureFactories\\Test\\": "tests",
"TestApp\\": "tests/TestApp/src",
"TestApp\\Test\\": "tests/TestApp/tests",
"TestPlugin\\": "tests/TestApp/plugins/TestPlugin/src",
"TestPlugin\\Test\\": "tests/TestApp/plugins/TestPlugin/tests"
}
},
"scripts": {
"mysql": "bash run_tests.sh Mysql",
"pgsql": "bash run_tests.sh Postgres",
"sqlite": "bash run_tests.sh Sqlite",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=-1",
"psalm": "vendor/bin/psalm",
"cs-check": "vendor/bin/phpcs --colors -p -s --extensions=php src/ tests/TestApp/tests/Factory tests/TestApp/plugins/TestPlugin/tests/Factory",
"cs-fix": "vendor/bin/phpcbf --colors -p -s --extensions=php src/ tests/TestApp/tests/Factory"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}