forked from exodusanto/critical-css
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
47 lines (47 loc) · 1.01 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
{
"name": "getmaple/critical-css",
"description": "A Laravel package for generating and using inline critical-path CSS.",
"keywords": ["css", "performance", "laravel"],
"authors": [
{
"name": "Artem Sky",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=5.5.9",
"illuminate/contracts": "~5.0",
"illuminate/support": "~5.0",
"illuminate/console": "~5.0",
"illuminate/http": "~5.0",
"illuminate/view": "~5.0",
"symfony/process": "~4.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-4": {
"Alfheim\\CriticalCss\\": "./src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"laravel": {
"providers": [
"Alfheim\\CriticalCss\\CriticalCssServiceProvider"
]
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}