-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.95 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 1.95 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "lordsimal/cakephp-scheduler",
"description": "Scheduler plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"plugin",
"scheduler",
"cron"
],
"require": {
"php": "^8.2",
"cakephp/cakephp": "^5.4",
"dragonmantank/cron-expression": "^3.3"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.3",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^11.5.3 || ^12.1.3 || ^13.0"
},
"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": "bin/docker-exec ghcr.io/phpstan/phpstan:2-php8.4 analyse",
"stan": [
"bin/docker-exec ghcr.io/phpstan/phpstan:2-php8.4 analyse",
"bin/docker-exec ghcr.io/danog/psalm:7.0.0-beta19 /composer/vendor/bin/psalm --no-cache"
],
"stan-baseline": "bin/docker-exec ghcr.io/phpstan/phpstan:2-php8.4 --generate-baseline",
"psalm-baseline": "bin/docker-exec ghcr.io/danog/psalm:7.0.0-beta19 /composer/vendor/bin/psalm --no-cache --set-baseline=psalm-baseline.xml",
"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": "info@pfeiferkevin.at",
"role": "Maintainer"
}
]
}