-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
55 lines (55 loc) · 1.5 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
{
"name": "arachne/verifier",
"description": "Requirements verification for Nette/Application.",
"type": "library",
"keywords": [ "nette", "arachne", "security" ],
"license": "MIT",
"authors": [
{
"name": "Jáchym Toušek",
"homepage": "http://enumag.cz",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6.0|^7.0.0",
"arachne/service-collections": "^0.1.0",
"doctrine/annotations": "^1.3.0",
"kdyby/annotations": "^2.3.0",
"nette/application": "^2.4.0",
"nette/di": "^2.4.0",
"nette/utils": "^2.4.0"
},
"require-dev": {
"arachne/codeception": "^0.7.3",
"codeception/codeception": "^2.2.0",
"eloquent/phony": "^0.13.5",
"latte/latte": "^2.4.0",
"tracy/tracy": "^2.4.0"
},
"minimum-stability": "alpha",
"autoload": {
"psr-4": {
"Arachne\\Verifier\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\": "tests/unit/src",
"Tests\\Functional\\": "tests/functional/src"
}
},
"scripts": {
"all": [
"@fix",
"@analyse",
"@test"
],
"fix": "php-cs-fixer fix",
"analyse": "phpstan analyse --no-progress --level=4 --configuration=phpstan.neon src tests",
"test": [
"\"vendor/bin/codecept\" build",
"\"vendor/bin/codecept\" run"
]
}
}