forked from josefsabl/Security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.87 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/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]"
}
],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:Sanasport/ServiceCollections.git"
}
],
"require": {
"php": "^7.1.0 || ~8.0.0 || ~8.1.0",
"arachne/service-collections": "dev-master",
"nette/di": "^3.0",
"nette/http": "^3.0.5",
"nette/security": "^3.1",
"nette/utils": "^3.2"
},
"require-dev": {
"contributte/codeception": "^1.3",
"codeception/codeception": "^4.1",
"eloquent/phony": "^5.0",
"eloquent/phony-phpunit": "^7.1",
"friendsofphp/php-cs-fixer": "^2.8.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"
}
}
}