-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 1.74 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 1.74 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
66
67
68
69
70
71
72
73
74
75
76
{
"name" : "gollumsf/libsass-bundle",
"type" : "symfony-bundle",
"description" : "Add libsabb filter for AsseticBundle",
"keywords" : [
"libsass",
"assetic",
"filter",
"gollumsf",
"nodejs",
"compass"
],
"homepage" : "https://github.com/GollumSF/libsass-bundle",
"license" : "GPL-3.0-or-later",
"authors" : [{
"name" : "Damien Duboeuf",
"email" : "damien.duboeuf@free.fr"
}
],
"support" : {
"email" : "duboeuf.damien@free.fr",
"wiki" : "https://github.com/GollumSF/libsass-bundle/wiki"
},
"require" : {
"php" : ">=5.3.2",
"symfony/framework-bundle" : ">=2.3",
"sass/node-sass" : ">=3.8",
"igosuki/compass-mixins" : ">=1.0"
},
"autoload" : {
"psr-0" : {
"GollumSF\\LibSassBundle" : ""
}
},
"target-dir" : "GollumSF/LibSassBundle",
"scripts" : {
"post-install-cmd" : [
"GollumSF\\LibSassBundle\\DistributionBundle\\Composer\\ScriptHandler::submoduleInstall"
],
"post-update-cmd" : [
"GollumSF\\LibSassBundle\\DistributionBundle\\Composer\\ScriptHandler::submoduleUpdate"
]
},
"repositories" : [{
"type" : "package",
"package" : {
"name" : "sass/node-sass",
"version" : "3.8.0",
"source" : {
"url" : "https://github.com/sass/node-sass.git",
"type" : "git",
"reference" : "v3.8.0"
},
"dist" : {
"url" : "https://github.com/sass/node-sass/archive/v3.8.0.zip",
"type" : "zip"
}
}
}, {
"type" : "package",
"package" : {
"name" : "igosuki/compass-mixins",
"version" : "1.0.2",
"source" : {
"url" : "https://github.com/Igosuki/compass-mixins.git",
"type" : "git",
"reference" : "1.0.2"
},
"dist" : {
"url" : "https://github.com/Igosuki/compass-mixins/archive/1.0.2.zip",
"type" : "zip"
}
}
}
]
}