-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
59 lines (58 loc) · 1.03 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
{
"name": "classygeeks/potion",
"description": "Potion is a pure PHP asset manager for Laravel based off of Assetic.",
"license": "MIT",
"authors": [
{
"name": "Classy Geeks llc.",
"email": "support@classygeeks.com",
"homepage": "http://classygeeks.com"
}
],
"keywords": [
"assets",
"asset-processing",
"asset-management",
"less",
"sass",
"scss",
"minifying",
"minify",
"laravel",
"compass",
"cssmin",
"jsmin"
],
"tags": [
"assets",
"asset-processing",
"asset-management",
"less",
"sass",
"scss",
"minifying",
"minify",
"laravel",
"compass",
"cssmin",
"jsmin"
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.*",
"kriswallsmith/assetic": "1.*",
"natxet/CssMin": "3.0.*",
"leafo/lessphp": "0.5.*",
"leafo/scssphp": "0.6.*",
"ptachoire/cssembed": "1.0.*",
"linkorb/jsmin-php": "1.0.*"
},
"autoload": {
"psr-0": {
"ClassyGeeks\\Potion\\": [
"src/"
]
}
},
"minimum-stability": "dev"
}