-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.49 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.49 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
{
"name": "skie/cakephp-scheduling",
"description": "CakePHP Scheduling manager",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=8.2",
"cakephp/cakephp": "^5.0",
"dragonmantank/cron-expression": "^3.3.2",
"symfony/process": "^6.0",
"skie/signal_handler": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"cakephp/cakephp-codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"Scheduling\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scheduling\\Test\\": "tests/",
"TestApp\\": "tests/TestApp/src",
"TestPlugin\\": "tests/test_app/plugins/TestPlugin/src/"
}
},
"scripts": {
"cs-check": "phpcs -p --standard=phpcs.xml src/ tests/",
"cs-fix": "phpcbf --standard=phpcs.xml src/ tests/",
"test": "phpunit",
"test:unit": "phpunit --testsuite=Unit",
"test:integration": "phpunit --testsuite=Integration",
"test:coverage": "phpunit --coverage-html coverage",
"stan": "tools/phpstan analyse src/",
"psalm": "tools/psalm --show-info=false",
"stan-tests": "tools/phpstan analyze -c tests/phpstan.neon",
"stan-baseline": "tools/phpstan --generate-baseline"
},
"extra": {
"installer-name": "Scheduling"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}