-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.84 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.84 KB
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
62
63
64
65
{
"name": "grafite/html",
"description": "A handy way to generate some HTML without writing it.",
"license": "MIT",
"keywords": [
"Laravel",
"HTML",
"LaravelCollective HTML"
],
"authors": [
{
"name": "Matt Lantz",
"email": "mattlantz@gmail.com"
}
],
"require": {
"php": ">=7.3|>=8.0",
"doctrine/dbal": "^2.5|^3.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/view": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"matthiasmullie/minify": "^1.3",
"illuminate/collections": "^8.78|^9.0|^10.0|^11.0|^12.0",
"badges/poser": "^3.1",
"tempest/highlight": "^2.13"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"laravel/pint": "^1.10",
"mockery/mockery": "^1.0",
"mikey179/vfsstream": "^1.6",
"orchestra/testbench": "^5.0|^6.0|7.0|^8.0|^9.0|^10.0",
"nunomaduro/phpinsights": "^2.0"
},
"autoload": {
"psr-4": {
"Grafite\\Html\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Grafite\\Html\\HtmlProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check-style": "vendor/bin/pint --test",
"fix-style": "vendor/bin/pint",
"insights": "vendor/bin/phpinsights",
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover clover.xml && php coverage-checker.php clover.xml 50"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}