forked from Tatoeba/tatoeba2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.3 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
{
"name": "tatoeba",
"require": {
"cakephp/cakephp": "3.7.*",
"cakephp/plugin-installer": "^1.0",
"dereuromark/cakephp-queue": "^3.11",
"cakephp/acl": "^0.4.0",
"markstory/asset_compress": "^3.5",
"patchwork/jsqueeze": "^2.0",
"natxet/CssMin": "^3.0",
"cakephp/migrations": "^2.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*",
"phpunit/phpunit": "^5.7|^6.0",
"cakephp/bake": "^1.8"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump",
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"test": "phpunit --colors=always"
}
}