-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (37 loc) · 875 Bytes
/
composer.json
File metadata and controls
38 lines (37 loc) · 875 Bytes
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": "foothing/laravel-wrappr",
"description": "Bind permissions to Laravel routes.",
"authors": [
{
"name": "brazorf",
"email": "fabrizio.ranieri@gmail.com"
}
],
"keywords": ["laravel", "permissions", "routes"],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"illuminate/auth": "~5.1",
"illuminate/database": "~5.1",
"illuminate/cache": "~5.1",
"foothing/laravel-repository": ">=0.7"
},
"require-dev": {
"orchestra/testbench": "3.1.*",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "4.*",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"Foothing\\": "src/Foothing"
}
},
"autoload-dev": {
"psr-4": {
"Foothing\\Wrappr\\Tests\\": "tests"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}