-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.04 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
{
"name": "xmarcos/dot-container",
"description": "DotContainer enables deep array access using dot-notation.",
"type": "library",
"license": "MIT",
"keywords": [
"dot-notation",
"dot",
"container",
"array",
"xmarcos"
],
"authors": [
{
"name": "Marcos Sader",
"email": "xmarcos@gmail.com"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": "^5.6 || >=7.0 <7.3"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.4",
"xmarcos/php-cs-fixer-config": "^0.1"
},
"autoload": {
"psr-4": {
"xmarcos\\Dot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"xmarcos\\Dot\\": "tests/unit/"
}
},
"scripts": {
"test": "phpunit",
"cs": "php-cs-fixer fix --config=.php_cs.dist -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix --config=.php_cs.dist -v --diff"
}
}