-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
50 lines (50 loc) · 1.29 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": "admad/cakephp-i18n",
"description": "A CakePHP plugin for I18n related tools.",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"i18n",
"messages",
"validation",
"routing"
],
"homepage": "https://github.com/ADmad/cakephp-i18n",
"authors": [
{
"name":"ADmad",
"role":"Author",
"homepage":"https://github.com/ADmad"
}
],
"license": "MIT",
"support": {
"source":"https://github.com/ADmad/cakephp-i18n",
"issues":"https://github.com/ADmad/cakephp-i18n/issues"
},
"require": {
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^10.1 || ^11.0"
},
"autoload": {
"psr-4": {
"ADmad\\I18n\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ADmad\\I18n\\Test\\": "tests",
"TestApp\\": "tests/test_app/src",
"TestPlugin\\": "tests/test_app/plugins/TestPlugin/src",
"Company\\TestPluginThree\\": "tests/test_app/plugins/Company/TestPluginThree/src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}