-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (42 loc) · 943 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
39
40
41
42
43
{
"name": "laradic/support",
"description": "Laravel support package",
"homepage": "https://github.com/laradic/support",
"keywords": [
"loop",
"extensions",
"blade",
"laravel"
],
"license": "MIT",
"authors": [
{
"name": "Robin Radic",
"email": "[email protected]",
"role": "Package Author/Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.0.*",
"radic/tmp-underscore-php": "^1.3.2",
"webmozart/path-util": "~1.0"
},
"require-dev": {
"laradic/dev": "dev-master"
},
"scripts": {
},
"autoload": {
"psr-4": {
"Laradic\\Support\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laradic\\Tests\\Support\\": "tests/"
}
}
}