-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 848 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 848 Bytes
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
{
"name": "rancoud/i18n",
"description": "I18N package",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sebastien Rancoud",
"email": "contact@rancoud.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Rancoud\\I18N\\": "src"
}
},
"require": {
"php": ">=7.4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^9.1",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"ci": [
"@lint",
"@test"
],
"lint": [
"phpcbf",
"phpcs",
"php-cs-fixer fix"
],
"test": [
"phpunit --colors --coverage-html ./coverage"
]
}
}