-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·42 lines (42 loc) · 1.02 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
{
"name": "hnhdigital-os/laravel-html-generator",
"license": "MIT",
"authors": [
{
"name": "Rocco Howard",
"email": "rocco@hnh.digital"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "^9.21|^10.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.3"
},
"support": {
"issues": "https://github.com/hnhdigital-os/laravel-html-generator/issues"
},
"autoload": {
"psr-4": {
"HnhDigital\\LaravelHtmlGenerator\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"HnhDigital\\LaravelHtmlGenerator\\BladeDirectiveServiceProvider"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"process-timeout": 2000,
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability" : "stable"
}