-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (60 loc) · 1.71 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
57
58
59
60
{
"name": "bedita/i18n",
"description": "Internationalization plugin for BEdita & CakePHP",
"type": "cakephp-plugin",
"license": "LGPL-3.0-or-later",
"support": {
"source": "https://github.com/bedita/i18n",
"issues": "https://github.com/bedita/i18n/issues"
},
"require": {
"php": ">=8.3",
"ext-intl": "*",
"cakephp/cakephp": "^5.0",
"laminas/laminas-diactoros": "^3.3",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^11.1.3",
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/console": "^5.0"
},
"autoload": {
"psr-4": {
"BEdita\\I18n\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BEdita\\I18n\\Test\\": "tests",
"BEdita\\I18n\\Test\\App\\": "tests/test_app/TestApp/",
"Cake\\": "./vendor/cakephp/cakephp/src",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"stan": "vendor/bin/phpstan analyse",
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit --colors=always",
"update-dev": [
"@composer update",
"@cs-setup"
]
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}