-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
50 lines (50 loc) · 1.33 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
{
"name": "vierge-noire/cakephp-test-suite-light",
"description": "A test suite for CakePHP application based on Sql queries",
"type": "cakephp-plugin",
"keywords": ["cakephp", "test"],
"authors": [
{
"name": "Nicolas Masson",
"email": "[email protected]"
},
{
"name": "Juan Pablo Ramìrez",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0",
"ext-pdo": "*"
},
"require-dev": {
"cakephp/migrations": "^4.1.0",
"josegonzalez/dotenv": "^4.0.0",
"phpunit/phpunit": "^10.1"
},
"autoload": {
"psr-4": {
"CakephpTestSuiteLight\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakephpTestSuiteLight\\Test\\": "tests/",
"TestApp\\": "tests/TestApp/src/",
"TestApp\\Test\\": "tests/TestApp/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",
"phpstan-baseline": "./vendor/bin/phpstan --generate-baseline",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:~1.10 && mv composer.backup composer.json"
},
"config": {
"sort-packages": true
}
}