-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
64 lines (64 loc) · 2.12 KB
/
composer.json
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
64
{
"name": "vierge-noire/cakephp-fixture-factories",
"description": "CakePHP Dynamic Fixtures",
"type": "cakephp-plugin",
"keywords": ["cakephp", "tests", "dynamic", "fixtures"],
"authors": [
{
"name": "Nicolas Masson",
"email": "[email protected]"
},
{
"name": "Juan Pablo Ramìrez",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=8.1",
"cakephp/orm": "^5.0",
"fakerphp/faker": "^1.23",
"vierge-noire/cakephp-test-suite-light": "^3.0"
},
"require-dev": {
"cakephp/bake": "^3.0.0",
"cakephp/cakephp-codesniffer": "^5.1",
"cakephp/migrations": "^4.0.0",
"josegonzalez/dotenv": "^4.0.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^10.1",
"vimeo/psalm": "^5.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": {
"test": "phpunit --colors=always",
"mysql": "bash run_tests.sh Mysql",
"pgsql": "bash run_tests.sh Postgres",
"sqlite": "bash run_tests.sh Sqlite",
"stan": "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
}
},
"minimum-stability": "stable",
"prefer-stable": true
}