forked from antonioribeiro/support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (35 loc) · 895 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": "pragmarx/support",
"description": "PragmaRX components support package",
"keywords": ["pragmarx","laravel"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Antonio Carlos Ribeiro",
"email": "acr@antoniocarlosribeiro.com",
"role": "Creator"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/filesystem": "~4.0|~5.0|~6.0|~7.0|~8.0|~9.0",
"symfony/var-dumper": "~2.6|~3.0|~4.0|~5.0|~6.0"
},
"autoload": {
"psr-4": {
"PragmaRX\\Support\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"suggest": {
"laravel/framework": "Laravel framework.",
"symfony/yaml": "The Yaml class needs it"
},
"extra": {
"branch-alias": {
"dev-master": "0.7.x-dev"
}
}
}