forked from deprecated-packages/DoctrineBehaviors
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·39 lines (39 loc) · 1017 Bytes
/
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
{
"name": "clear01/doctrine-behaviors",
"description": "Integration of KnpLabs/DoctrineBehaviors to Nette\\DI",
"license": "MIT",
"authors": [
{ "name": "Tomáš Votruba", "homepage": "http://tomasvotruba.cz" },
{ "name": "Clear01 Development", "homepage": "http://clear01.com"}
],
"require": {
"php": ">=7.1.0",
"kdyby/events": "^3.0",
"knplabs/doctrine-behaviors": "^2.0",
"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",
"Clear01\\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"
}
}