-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.54 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": "robotusers/cakephp-tactician",
"description": "CakePHP Tactician plugin",
"homepage": "https://github.com/robotusers/cakephp-tactician",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=7.2",
"league/tactician": "^1.0",
"cakephp/core": "~4.0",
"cakephp/datasource": "~4.0"
},
"suggest": {
"cakephp/cakephp": "Install ^3.6 if you want to use CommandFactory.",
"cakephp/event": "Install ^3.4 if you want to use BusListener.",
"robotusers/commander": "Install ^0.2 if you want to use BusListener."
},
"require-dev": {
"cakephp/cakephp-codesniffer": "*",
"phpunit/phpunit": "~8.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^0.12.6",
"robotusers/commander": "^0.2.0",
"cakephp/cakephp": "~4.0.0"
},
"autoload": {
"psr-4": {
"Robotusers\\Tactician\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "vendor/cakephp/cakephp/tests",
"Robotusers\\Tactician\\Test\\": "tests",
"App\\": "tests/test_app"
}
},
"scripts": {
"check": [
"@test",
"@stan-check",
"@cs-check"
],
"cs-check": "phpcs --colors -p ./src ./tests",
"cs-fix": "phpcbf --colors ./src ./tests",
"stan-check": "phpstan analyse ./src -l 7",
"test": "phpunit --colors=always"
},
"minimum-stability": "RC"
}