-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
50 lines (50 loc) · 1.19 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
{
"name": "stolz/assets",
"description": "An ultra-simple-to-use assets management library",
"keywords": ["assets", "asset", "css", "js", "javascript", "pipeline", "minify", "laravel", "agnostic"],
"license": "MIT",
"authors": [
{
"name": "Stolz",
"homepage": "https://github.com/Stolz",
"role": "developer"
}
],
"support": {
"source": "https://github.com/Stolz/Assets",
"issues": "https://github.com/Stolz/Assets/issues",
"chat": "https://gitter.im/Stolz/Assets",
"docs": "https://github.com/Stolz/Assets/blob/master/API.md"
},
"require": {
"php": ">=5.3.0",
"mrclay/minify": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/php-compatibility": "^9.3",
"slevomat/coding-standard": "^6.0",
"evert/phpdoc-md": "^0.2.0"
},
"suggest": {
"laravel/laravel": "Included ServiceProvider and Facade to work out of the box with Laravel"
},
"autoload": {
"psr-4": {
"Stolz\\Assets\\": "src/"
}
},
"config": {
"discard-changes": true,
"optimize-autoloader": true,
"preferred-install": "dist"
},
"extra": {
"laravel": {
"providers": [
"Stolz\\Assets\\Laravel\\ServiceProvider"
]
}
}
}