forked from janmarek/WebLoader
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
executable file
·71 lines (71 loc) · 2.06 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
61
62
63
64
65
66
67
68
69
70
71
{
"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": "[email protected]"
}
],
"autoload": {
"psr-4": {
"WebLoader\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "WebLoader\\Test\\": "tests/" }
},
"require": {
"php": "^8.3",
"nette/application": "^3.1",
"nette/di": "^3.0",
"nette/utils": "^4.0",
"ext-json": "*",
"nette/schema": "^1.2",
"nette/finder": "^3.0",
"latte/latte": "^3.0",
"tracy/tracy": "^2.8"
},
"suggest": {
"wikimedia/less.php": "LESS compiler written in PHP.",
"scssphp/scssphp": "SCSS compiler written in PHP.",
"tedivm/jshrink": "Javascript Minifier built in PHP",
"tubalmartin/cssmin": "A PHP port of the YUI CSS compressor",
"symfony/console": "For pre-generating files from CLI",
"nette/safe-stream": "Atomic and safe manipulation with files via native PHP functions."
},
"require-dev": {
"nette/bootstrap": "^3.1",
"nette/caching": "^3.1",
"nette/component-model": "^3.0",
"nette/http": "^3.0",
"nette/neon": "^3.0",
"nette/robot-loader": "^3.0 || ^4.0",
"wikimedia/less.php": "^5.0.0",
"scssphp/scssphp": "^1.1.0",
"mockery/mockery": "1.*",
"phpunit/phpunit": "11.*",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0.0",
"phpstan/phpstan-nette": "^1.0.0",
"roave/security-advisories": "dev-master",
"symfony/console": "^4.2.9|^5.0.0|^6.0.0||^7.0.0",
"phpstan/phpstan-mockery": "^1.0.0",
"tubalmartin/cssmin": "^4.1",
"tedivm/jshrink": "^1.3",
"slevomat/coding-standard": "^8.15"
},
"scripts": {
"phpstan": "@php ./vendor/bin/phpstan analyse --configuration ./phpstan/phpstan.neon --memory-limit 512M",
"tests": "@php ./vendor/bin/phpunit --configuration tests/phpunit.xml tests"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}