-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·37 lines (37 loc) · 901 Bytes
/
composer.json
File metadata and controls
executable file
·37 lines (37 loc) · 901 Bytes
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
{
"name": "zenify/doctrine-behaviors",
"description": "Integration of KnpLabs/DoctrineBehaviors to Nette\\DI",
"license": "MIT",
"authors": [
{ "name": "Tomáš Votruba", "homepage": "http://tomasvotruba.cz" }
],
"require": {
"php": "^7.0",
"kdyby/events": "~3.0",
"knplabs/doctrine-behaviors": "~1.4",
"tracy/tracy": "~2.4"
},
"require-dev": {
"kdyby/doctrine": "~3.1",
"nette/bootstrap": "~2.4",
"nette/di": "~2.4",
"nette/http": "~2.4",
"nette/reflection": "~2.4",
"nette/security": "~2.4",
"zenify/coding-standard": "^4.0",
"phpunit/phpunit": "^5.6"
},
"autoload": {
"psr-4": {
"Zenify\\DoctrineBehaviors\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Zenify\\DoctrineBehaviors\\Tests\\": "tests"
}
},
"scripts": {
"check-cs": "vendor/bin/phpcs src tests -ps --standard=vendor/zenify/coding-standard/src/ZenifyCodingStandard/ruleset.xml"
}
}