-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
39 lines (39 loc) · 1015 Bytes
/
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
{
"name": "kevinquinnyo/php-raid",
"description": "RAID (redundant array of disks) calculation utility.",
"type": "library",
"homepage": "https://github.com/kevinquinnyo/php-raid",
"license": "MIT",
"support": {
"issues": "https://github.com/kevinquinnyo/php-raid/issues",
"wiki": "https://github.com/kevinquinnyo/php-raid/wiki"
},
"require": {
"php": ">= 7.0",
"cakephp/i18n": "^3.4",
"cakephp/utility": "^3.4",
"squizlabs/php_codesniffer": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"cakephp/cakephp-codesniffer": "dev-master"
},
"autoload": {
"psr-4": {
"kevinquinnyo\\Raid\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"kevinquinnyo\\Raid\\Test\\": "tests"
}
},
"scripts": {
"cs": "phpcs --colors -p --standard=phpcs.xml.dist",
"cs-fix": "phpcbf --colors --standard=phpcs.xml.dist",
"test": "phpunit --colors=always --configuration phpunit.xml.dist"
},
"config": {
"sort-packages": true
}
}