generated from eXolnet/skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.62 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
60
61
{
"name": "exolnet/laravel-html-list",
"description": "Facilitate HTML element creation from Laravel collections",
"keywords": [
"exolnet",
"laravel",
"laravel-html-list"
],
"homepage": "https://github.com/eXolnet/laravel-html-list",
"license": "MIT",
"authors": [
{
"name": "Alexandre D'Eschambeault",
"homepage": "https://www.exolnet.com",
"role": "Developer"
},
{
"name": "Simon Gaudreau",
"homepage": "https://www.exolnet.com",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.0|^12.0",
"spatie/laravel-html": "^3.2"
},
"require-dev": {
"exolnet/phpcs-config": "^2.0",
"mockery/mockery": "^1.5.1",
"orchestra/testbench": "^9.0|^10.0",
"phpunit/phpunit": "^11.5.3",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Exolnet\\HtmlList\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Exolnet\\HtmlList\\Tests\\": "tests"
}
},
"scripts": {
"lint": "vendor/bin/phpcs -p -s --standard=ruleset.xml",
"lint:fix": "vendor/bin/phpcbf -p --standard=ruleset.xml",
"test": "vendor/bin/phpunit",
"test:coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Exolnet\\HtmlList\\HtmlListServiceProvider"
]
}
}
}