-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.72 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
{
"name": "arachne/event-manager",
"description": "Simple integration of Doctrine EventManager to Nette framework.",
"type": "library",
"keywords": [ "nette", "arachne", "doctrine", "events" ],
"license": "MIT",
"authors": [
{
"name": "Jáchym Toušek",
"homepage": "http://enumag.cz",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.0",
"arachne/container-adapter": "^0.3.0 || ^0.4.0",
"doctrine/common": "^2.7.0",
"nette/di": "^2.4.10",
"nette/utils": "^2.4.0",
"symfony/doctrine-bridge": "^3.0.0 || ^4.0.0"
},
"require-dev": {
"codeception/codeception": "^2.4.3",
"contributte/codeception": "^1.0.1",
"friendsofphp/php-cs-fixer": "^2.8.0",
"phpstan/phpstan": "^0.11.0",
"phpstan/phpstan-nette": "^0.11.0",
"phpstan/phpstan-strict-rules": "^0.11.0"
},
"autoload": {
"psr-4": {
"Arachne\\EventManager\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"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.3-dev"
}
}
}