forked from KristofMorva/laravel-ide-macros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 866 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
{
"name": "kenzal/laravel-ide-macros",
"description": "Generating a helper file for IDEs to support Laravel's macros.",
"keywords": ["laravel", "autocomplete", "ide", "macros", "helper", "phpstorm", "netbeans", "sublime", "codeintel", "phpdoc"],
"license": "MIT",
"authors": [
{
"name": "Kristóf Morva",
"email": "kristof92@gmail.com"
}
],
"require": {
"barryvdh/laravel-ide-helper": "^2.0"
},
"autoload": {
"psr-4": {
"Tutorigo\\LaravelMacroHelper\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"kenzal\\LaravelMacroHelper\\IdeMacrosServiceProvider"
]
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}