-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.54 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
{
"name": "bhittani/repository",
"description": "Fluent storage repository with dot notated key support",
"keywords": ["configuration", "storage", "repository", "fluent", "dot-notation"],
"homepage": "https://github.com/kamalkhan/repository",
"license": "MIT",
"authors": [
{
"name": "Kamal Khan",
"email": "shout@bhittani.com",
"homepage": "http://bhittani.com"
}
],
"support": {
"issues": "https://github.com/kamalkhan/repository/issues"
},
"autoload": {
"psr-4": {
"Bhittani\\Repository\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bhittani\\Repository\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "5.5.9"
}
},
"require": {
"php": ">=5.5,<8.0-DEV"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"friendsofphp/php-cs-fixer": "^2.2"
},
"scripts": {
"test": "phpunit --colors=always",
"coverage-clover": "phpunit --colors=always --coverage-clover coverage.xml",
"cs-check": "php-cs-fixer fix --dry-run --using-cache=no",
"cs-fix": "php-cs-fixer fix --using-cache=no",
"check": ["@cs-check", "@test"]
},
"repositories": [
{ "packagist": false },
{ "type": "composer", "url": "https://packagist.org" }
]
}