forked from janmarek/WebLoader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
60 lines (60 loc) · 1.61 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
60
{
"name": "futurerockstars/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-4": {
"WebLoader\\": "src"
}
},
"require": {
"php": ">=7.4.0 <8.0.0",
"latte/latte": "^2.7.4",
"nette/application": "^3.1.11",
"nette/caching": "^3.1.4",
"nette/di": "^3.1.2",
"nette/finder": "^2.6.0|^3.0.0",
"nette/http": "^3.2.2",
"nette/safe-stream": "^2.5.1",
"nette/utils": "^3.1.6|^4.0.0",
"tedivm/jshrink": "^1.6.8",
"tracy/tracy": "^2.6.0",
"tubalmartin/cssmin": "^4.1.0"
},
"suggest": {
"wikimedia/less.php": "LESS compiler written in PHP.",
"scssphp/scssphp": "SCSS compiler written in PHP."
},
"require-dev": {
"brianium/paratest": "^6.10",
"mockery/mockery": "^1.6.2",
"nette/bootstrap": "^3.1.4",
"nette/robot-loader": "^3.1.0",
"orisai/coding-standard": "^3.7",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-nette": "^1.2",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^9.5.0",
"scssphp/scssphp": "^1.11.0",
"staabm/annotate-pull-request-from-checkstyle": "^1.8",
"wikimedia/less.php": "^4.1.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}