-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (41 loc) · 1.31 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
{
"name": "machy8/webloader",
"description": "Simple, easy to use, php bundler for javascript and css",
"keywords": ["webloader", "module-bundler", "javascript", "css", "frontend", "build-tool"],
"license": "BSD-3-Clause",
"require": {
"php": ">=8.0",
"nette/neon": "^2.4|^3.0"
},
"require-dev": {
"tracy/tracy": "^2.8",
"nette/tester": "^2.4",
"tubalmartin/cssmin": "^4.1",
"machy8/google-closure-compiler": "^1.0",
"phpstan/phpstan": "^1.2",
"symplify/easy-coding-standard": "^10.0",
"symplify/config-transformer": "^10.0",
"nette/di": "^3.0"
},
"suggest": {
"machy8/google-closure-compiler": "PHP client for the Google Closure Compiler API in one file",
"tedivm/jshrink": "Javascript Minifier built in PHP",
"tubalmartin/cssmin": "A PHP port of the YUI CSS compressor"
},
"autoload": {
"classmap": ["src/"]
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"scripts": {
"cs:check": "vendor/bin/ecs check src -c tests/coding-standard/ecs.php",
"cs:fix": "vendor/bin/ecs check src -c tests/coding-standard/ecs.php",
"phpstan:check": "phpstan analyse -c tests/phpstan/phpstan.neon -l 5 src tests/nette-tester",
"tester:check": "tester -p phpdbg tests/nette-tester -s --coverage ./lcov.info --coverage-src ./src"
},
"minimum-stability": "dev",
"prefer-stable" : true
}