forked from janmarek/WebLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (43 loc) · 1.05 KB
/
composer.json
File metadata and controls
45 lines (43 loc) · 1.05 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
{
"name": "janmarek/webloader",
"description": "Tool for loading or deploying CSS and JS files into web pages",
"keywords": ["webloader", "css", "javascript", "assets", "nette"],
"homepage": "http://addons.nette.org/cs/webloader",
"license": "MIT",
"authors": [
{
"name": "Jan Marek",
"email": "mail@janmarek.net"
}
],
"autoload": {
"psr-0": {
"WebLoader": ""
}
},
"require": {
"nette/application": "~3.0",
"nette/di": "~3.0",
"nette/utils": "~3.0"
},
"suggest": {
"oyejorge/less.php": "LESS compiler written in PHP.",
"leafo/scssphp": "SCSS compiler written in PHP.",
"joseki/webloader-filters": "CSSMin & JSMin filters written in PHP.",
"coffeescript/coffeescript": "CoffeeScript compiler written in PHP."
},
"require-dev": {
"tracy/tracy": "~2.6",
"oyejorge/less.php": "~1.5",
"leafo/scssphp": "~0.1",
"coffeescript/coffeescript": "1.3.*",
"mockery/mockery": "0.7.*",
"phpunit/phpunit": "3.7.*",
"jakub-onderka/php-parallel-lint": "~0.7"
},
"extra": {
"branch-alias": {
"dev-master": "2.4-dev"
}
}
}