-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.4 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.4 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
{
"name": "cakedc/cakephp-roadrunner",
"description": "Roadrunner bridge and worker for CakePHP",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": "^8.1",
"cakephp/cakephp": "^4.4",
"spiral/roadrunner": "^2023.1.4",
"laminas/laminas-diactoros": "^2.21",
"spiral/roadrunner-http": "^3.0.1"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^4.2",
"phpunit/phpunit": "~8.5.0 || ^9.3",
"phpstan/phpstan": "^1.4"
},
"autoload": {
"psr-4": {
"CakeDC\\Roadrunner\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CakeDC\\Roadrunner\\Test\\": "tests",
"App\\": "tests/test_app/src",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"analyze": [
"@test",
"@phpcs",
"@phpstan"
],
"test": "phpunit --colors=always",
"phpcs": "phpcs --colors -p --standard=phpcs.xml src/ worker/cakephp-worker.php",
"phpcbf": "phpcbf --colors --standard=phpcs.xml src/ worker/cakephp-worker.php",
"phpstan": "phpstan analyse src/ worker/cakephp-worker.php",
"coverage": "phpunit --coverage-html coverage/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}