-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 999 Bytes
/
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
{
"name": "webchemistry/router",
"type": "library",
"description": "Router",
"license": [
"GPL-3.0"
],
"keywords": [
"router",
"webchemistry"
],
"require": {
"php": ">=7.1",
"nette/application": "^2.3 || ^3.0"
},
"require-dev": {
"nette/di": "^2.3 || ^3.0",
"codeception/codeception": "^2.5"
},
"autoload": {
"psr-4": {
"WebChemistry\\Routing\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Test\\": ["tests/classes/"]
}
},
"scripts": {
"tests": [
"vendor/bin/codecept build",
"vendor/bin/codecept run --debug"
],
"phpstan-install": [
"mkdir -p temp/phpstan",
"composer require -d temp/phpstan phpstan/phpstan:^0.10",
"composer require -d temp/phpstan phpstan/phpstan-deprecation-rules:^0.10",
"composer require -d temp/phpstan phpstan/phpstan-nette:^0.10",
"composer require -d temp/phpstan phpstan/phpstan-strict-rules:^0.10"
],
"phpstan": [
"temp/phpstan/vendor/bin/phpstan analyse -l max -c phpstan.neon src"
]
}
}