-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 909 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
{
"name": "benrowe/laravel-config",
"type": "library",
"description": "A basic laravel runtime configuration handler that is stored as simple key/values.",
"keywords": ["laravel", "config", "read", "write", "filter"],
"license": "MIT",
"homepage" : "http://benrowe.info",
"authors": [
{
"name": "Ben Rowe",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/benrowe/laravel-config/issues"
},
"require": {
"illuminate/support": "^5.2",
"illuminate/contracts": "^5.2"
},
"require-dev": {
"php" : ">=5.5.9",
"phpunit/phpunit": "^4.0"
},
"autoload": {
"psr-4": {
"Benrowe\\Laravel\\Config\\": "src/"
}
},
"scripts": {
"test": "phpunit --coverage-text; php-cs-fixer fix -v --diff --dry-run;"
}
}