forked from Arachne/Security
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
65 lines (65 loc) · 1.9 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
{
"name": "arachne/security",
"description": "Authentication and authorization for Nette framework. Deals with cases that are difficult to implement with nette/security.",
"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/service-collections": "^0.1.0 || ^0.2.0",
"nette/di": "^2.4.10",
"nette/http": "^2.4.0",
"nette/security": "^2.4.0",
"nette/utils": "^2.4.0"
},
"require-dev": {
"arachne/codeception": "^0.8.0",
"codeception/codeception": "^2.3.2",
"eloquent/phony": "^3.0.0",
"eloquent/phony-phpunit": "^4.0.0",
"eloquent/phpstan-phony": "^0.3.0",
"friendsofphp/php-cs-fixer": "^2.8.0",
"phpstan/phpstan": "^0.10.1",
"phpstan/phpstan-nette": "^0.10.0",
"phpstan/phpstan-strict-rules": "^0.10.0"
},
"autoload": {
"psr-4": {
"Arachne\\Security\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\": "tests/unit/src",
"Tests\\Integration\\": "tests/integration/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.4-dev"
}
}
}