-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.21 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
{
"name": "webrouse/n-asset-macro",
"license": "MIT",
"description": "Asset macro for Latte and Nette Framework useful for assets cache busting (with gulp, webpack, etc.)",
"type": "library",
"authors": [
{
"name": "Michal Jurečko",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"latte/latte": ">=2.4",
"nette/di": ">=2.4",
"nette/utils": ">=2.4"
},
"require-dev": {
"nette/application": ">=2.4",
"nette/http": ">=2.4",
"nette/caching": ">=2.5",
"nette/utils": "3.0.x-dev as 2.5.x-dev",
"nette/tester": ">=2.0",
"mockery/mockery": "^1.2.0",
"nette/coding-standard": ">=2.0",
"phpstan/phpstan-nette": ">=0.9",
"tracy/tracy": ">=2.5"
},
"autoload": {
"psr-0": {
"Webrouse": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": false,
"scripts": {
"test": "vendor/bin/tester tests -s -c tests/php-unix.ini",
"check-cs": "vendor/bin/ecs check --ansi --no-progress-bar --config coding-standard.yml src tests",
"fix-cs": "vendor/bin/ecs check --ansi --no-progress-bar --config coding-standard.yml src tests --fix",
"phpstan": "vendor/phpstan/phpstan/bin/phpstan analyse --no-progress --ansi --level 6 --configuration phpstan.neon src tests"
}
}