forked from cakephp/bake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.8 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
{
"name": "cakephp/bake",
"description": "Bake plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": ["cakephp", "bake"],
"homepage": "https://github.com/cakephp/bake",
"license": "MIT",
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/bake/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/bake/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/bake"
},
"require": {
"php": ">=7.2",
"cakephp/cakephp": "^4.0",
"cakephp/plugin-installer": "^1.0",
"wyrihaximus/twig-view": "^5.0.1"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^4.0",
"phpunit/phpunit": "~8.5.0"
},
"autoload": {
"psr-4": {
"Bake\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BakeTest\\": "tests/test_app/Plugin/BakeTest/src/",
"Pastry\\PastryTest\\": "tests/test_app/Plugin/PastryTest/src/",
"Bake\\Test\\": "tests/",
"Bake\\Test\\App\\": "tests/test_app/App/",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --parallel=16 -p src/ tests/",
"cs-fix": "phpcbf --parallel=16 -p src/ tests/",
"phpstan": "phpstan analyse src/",
"phpstan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan-shim:^0.11 && mv composer.backup composer.json",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
}
}