-
Notifications
You must be signed in to change notification settings - Fork 129
/
composer.json
51 lines (51 loc) · 1.15 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "patricktalmadge/bootstrapper",
"description": "Twitter Bootstrap markup generator",
"license": "MIT",
"keywords": [
"bootstrap",
"laravel"
],
"authors": [
{
"name": "Patrick Talmadge",
"email": "[email protected]"
},
{
"name": "Maxime Fabre",
"email": "[email protected]"
},
{
"name": "Patrick Rose",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0",
"laravelcollective/html": "^6.2.0",
"illuminate/support": "^6.0||^7.0||^8.0",
"illuminate/config": "^6.0||^7.0||^8.0",
"illuminate/routing": "^6.0||^7.0||^8.0",
"twbs/bootstrap": "~3"
},
"require-dev": {
"mockery/mockery": "~1.3.3||^1.4.2",
"phpspec/phpspec": "^6.3|^7.0",
"graham-campbell/phpspec-skip-example-extension": "^5.1",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Bootstrapper\\": "src\\Bootstrapper",
"DummyClasses\\": "tests\\DummyClasses"
}
},
"extra": {
"laravel": {
"providers": [
"Bootstrapper\\BootstrapperL5ServiceProvider"
]
}
},
"minimum-stability": "stable"
}