-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
49 lines (49 loc) · 1.41 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
{
"name": "vierge-noire/cakephp-test-migrator",
"description": "Migration helper for the CakePHP Test Suite Light",
"license": "MIT",
"authors": [
{
"name": "Juan Pablo Ramirez",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"cakephp/cakephp": "5.x-dev"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.1",
"cakephp/migrations": "4.x-dev as 4.0.0",
"josegonzalez/dotenv": "dev-master",
"phpunit/phpunit": "^10.1"
},
"autoload": {
"psr-4": {
"CakephpTestMigrator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CakephpTestMigrator\\Test\\": "tests",
"MigratorTestApp\\": "tests\\TestApp\\src"
}
},
"scripts": {
"cs-check": "phpcs --colors --parallel=16 -p src/ tests/",
"cs-fix": "phpcbf --colors --parallel=16 -p src/ tests/",
"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",
"phpstan-baseline": "./vendor/bin/phpstan --generate-baseline",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:1.10.18 && mv composer.backup composer.json"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}