-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
59 lines (59 loc) · 1.55 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
52
53
54
55
56
57
58
59
{
"name": "marvinlabs/laravel-html-bootstrap-4",
"description": "A fluent html builder for Bootstrap 4 components",
"keywords": [
"marvinlabs",
"bootstrap-4",
"html"
],
"homepage": "https://github.com/marvinlabs/laravel-html-bootstrap-4",
"license": "MIT",
"authors": [
{
"name": "Vincent Mimoun-Prat",
"email": "[email protected]",
"homepage": "https://vincentprat.info",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.0",
"spatie/laravel-html": "^2.19.0|^3.1",
"appstract/laravel-blade-directives": "^1.6.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"orchestra/testbench": "^4.0|^5.0|^7.0|^8.0",
"symfony/dom-crawler": "^4.1"
},
"autoload": {
"psr-4": {
"MarvinLabs\\Html\\Bootstrap\\": "src/Bootstrap"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"MarvinLabs\\Html\\Bootstrap\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"MarvinLabs\\Html\\Bootstrap\\BootstrapServiceProvider"
],
"aliases": {
"BS": "MarvinLabs\\Html\\Bootstrap\\Facades\\Bootstrap"
}
}
}
}