-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
67 lines (67 loc) · 1.92 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
{
"name": "arachne/components-protection",
"description": "Security for nette/application components.",
"type": "library",
"keywords": [ "nette", "arachne", "security" ],
"license": "MIT",
"authors": [
{
"name": "Jáchym Toušek",
"homepage": "http://enumag.cz",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.0",
"arachne/verifier": "^0.10.0",
"doctrine/annotations": "^1.3.0",
"kdyby/annotations": "^2.3.0",
"nette/application": "^2.4.0",
"nette/di": "^2.4.10"
},
"require-dev": {
"codeception/codeception": "^2.4.3",
"contributte/codeception": "^1.0.1",
"eloquent/phony": "^3.0.0",
"eloquent/phony-phpunit": "^4.0.0",
"eloquent/phpstan-phony": "^0.4.0",
"friendsofphp/php-cs-fixer": "^2.8.0",
"kdyby/doctrine-cache": "^2.6.1",
"latte/latte": "^2.4.0",
"phpstan/phpstan": "^0.11.0",
"phpstan/phpstan-nette": "^0.11.0",
"phpstan/phpstan-strict-rules": "^0.11.0"
},
"autoload": {
"psr-4": {
"Arachne\\ComponentsProtection\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\": "tests/unit/src",
"Tests\\Functional\\": "tests/functional/src"
},
"files": [
"vendor/codeception/codeception/shim.php"
]
},
"scripts": {
"ci": [
"@fix",
"@analyse",
"@test"
],
"fix": "\"vendor/bin/php-cs-fixer\" fix",
"analyse": "\"vendor/bin/phpstan\" analyse --no-progress --level=max --configuration=phpstan.neon src tests",
"test": [
"\"vendor/bin/codecept\" build",
"\"vendor/bin/codecept\" run --debug"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.7-dev"
}
}
}