-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.65 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.65 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
48
49
50
51
52
53
{
"name": "tatoeba/tatoeba",
"type": "project",
"license": "AGPL-3.0-only",
"description": "Code for tatoeba.org, a multilingual sentence and translation database",
"require": {
"cakephp/cakephp": "^4.6",
"cakephp/plugin-installer": "^1.0",
"dereuromark/cakephp-queue": "^6.0",
"markstory/asset_compress": "^4.0",
"patchwork/jsqueeze": "^2.0",
"natxet/cssmin": "^3.0",
"cakephp/migrations": "^3.0",
"zircote/swagger-php": "^5.3",
"doctrine/annotations": "^2.0",
"cakedc/cakephp-cached-routing": "^1.0",
"dereuromark/cakephp-tinyauth": "3.*",
"cakephp/authentication": "2.*",
"cakephp/authorization": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"cakephp/bake": "2.*",
"helmich/phpunit-json-assert": "3.*"
},
"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 --version 3.1.0 src/Controller/VHosts/Api/ src/Model/Behavior/ExposedOnApiBehavior.php -o webroot/api/openapi.json"
]
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true
},
"audit": {
"ignore": {
"CVE-2026-55590": "Ignored because cakephp/authentication 2.11.1 is fine, see https://github.com/cakephp/authentication/issues/798"
}
}
}
}