forked from aaronlord/laroute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 1.05 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
{
"name": "lord/laroute",
"description": "Access Laravels URL/Route helper functions, from JavaScript.",
"keywords" : ["laravel", "routes", "routing", "javascript"],
"authors": [
{
"name": "Aaron Lord",
"email": "[email protected]"
}
],
"license" : "MIT",
"require": {
"php" : ">=5.4.0",
"illuminate/support" : "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.0.*",
"illuminate/routing": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.0.*",
"illuminate/console": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.0.*",
"illuminate/config": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.0.*",
"illuminate/filesystem": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.0.*"
},
"require-dev" : {
"phpunit/phpunit" : "~4.0",
"mockery/mockery" : "dev-master"
},
"autoload": {
"psr-4": {
"Lord\\Laroute\\": "src/"
}
},
"minimum-stability": "dev"
}