-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
38 lines (38 loc) · 944 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
{
"name": "rtroncoso/laravel-context",
"description": "Provides Service Provider binding depending on a context",
"homepage": "https://github.com/rtroncoso/laravel-context",
"license": "WTFPL (Do What The Fuck You Want To Public License)",
"keywords": [
"laravel",
"contextual",
"service",
"providers",
"binding"
],
"authors": [
{
"name": "Rodrigo Troncoso",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.1.*"
},
"require-dev": {
"phpunit/phpunit": "^4.6",
"phpspec/phpspec": "^2.2",
"benconstable/phpspec-laravel": "~2.0",
"orchestra/testbench": "3.1.*"
},
"autoload": {
"classmap" : [
"src/"
],
"psr-0": {
"Cupona\\": "src/"
}
},
"minimum-stability": "dev"
}