-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.66 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
{
"name": "lordsimal/cakephp-scheduler",
"description": "Scheduler plugin for CakePHP",
"type": "cakephp-plugin",
"require": {
"php": "^8.1",
"cakephp/cakephp": "^5.0",
"dragonmantank/cron-expression": "^3.3"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.5.5 || ^11.1.3"
},
"license": "MIT",
"autoload": {
"psr-4": {
"CakeScheduler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeScheduler\\Test\\": "tests/",
"TestApp\\": "tests/test_app/src",
"TestPlugin\\": "tests/test_app/plugins/TestPlugin/src/"
}
},
"scripts": {
"cs-check": "phpcs --colors -p ./src ./tests ./config",
"cs-fix": "phpcbf --colors -p ./src ./tests ./config",
"phpstan": "tools/phpstan analyse",
"psalm": "tools/psalm --show-info=false",
"stan": [
"@phpstan",
"@psalm"
],
"stan-tests": "tools/phpstan analyze -c tests/phpstan.neon",
"stan-baseline": "tools/phpstan --generate-baseline",
"stan-setup": "phive install",
"test": "phpunit",
"test-coverage": "XDEBUG_MODE=coverage phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"authors": [
{
"name": "Kevin Pfeifer",
"email": "[email protected]",
"role": "Maintainer"
}
]
}