-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.21 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
{
"name": "bedita/i18n-microsoft",
"description": "BEdita I18n Microsoft plugin supporting PHP >= 8.3",
"license": "MIT",
"require": {
"php": ">=8.3",
"bedita/i18n": "^5.1.0",
"cakephp/utility": "^4.5"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.10",
"cakephp/cakephp-codesniffer": "~4.7.0",
"cakephp/cakephp": "^4.5"
},
"autoload": {
"psr-4": {
"BEdita\\I18n\\Microsoft\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BEdita\\I18n\\Microsoft\\Test\\": "tests/",
"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"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
}
}