forked from juniorb2ss/laravel-route-extends-macros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.02 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
{
"name": "juniorb2ss/laravel-route-extends-macros",
"description": "Utils macros to laravel route.",
"keywords": ["laravel", "routing", "helper"],
"homepage": "https://github.com/juniorb2ss/laravel-route-extends-macros",
"license": "MIT",
"authors": [
{
"name": "Carlos Eduardo",
"email": "[email protected]",
"homepage": "https://github.com/juniorb2ss"
}
],
"require": {
"php": "^5.5.9 || ^7.0",
"illuminate/support": "5.1.* || 5.2.* || 5.3.*",
"illuminate/http": "5.1.* || 5.2.* || 5.3.*"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0",
"orchestra/testbench": "~3.0",
"codeclimate/php-test-reporter": "^0.3.2"
},
"autoload": {
"psr-4": {
"Juniorb2ss\\LaravelRouteExtendsMacros\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests"
}
}