-
Notifications
You must be signed in to change notification settings - Fork 131
/
composer.json
44 lines (44 loc) · 1.24 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
{
"name": "tatoeba/tatoeba",
"type": "project",
"license": "AGPL-3.0-only",
"description": "Code for tatoeba.org, a multilingual sentence and translation database",
"require": {
"cakephp/cakephp": "3.8.*",
"cakephp/plugin-installer": "^1.0",
"dereuromark/cakephp-queue": "dev-cake3",
"markstory/asset_compress": "^3.5",
"patchwork/jsqueeze": "^2.0",
"natxet/cssmin": "^3.0",
"cakephp/migrations": "^2.1",
"codekanzlei/cake-auth-actions": "^3.0",
"zircote/swagger-php": "^4.7"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0",
"cakephp/bake": "1.*",
"helmich/phpunit-json-assert": "v2"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"post-install-cmd": [
"./vendor/bin/openapi src/Controller/VHosts/Api/ -o webroot/api/openapi-unstable.json"
]
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true
}
}
}