-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
62 lines (62 loc) · 1.39 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
{
"name": "kdyby/annotations",
"type": "library",
"description": "Doctrine Annotations integration into Nette Framework",
"keywords": ["nette", "kdyby", "doctrine", "annotations"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Filip Procházka",
"homepage": "http://filip-prochazka.com",
"email": "[email protected]"
},
{
"name": "Jáchym Toušek",
"homepage": "http://enumag.cz",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/kdyby/annotations/issues"
},
"require": {
"php": "^7.1",
"nette/di": "^3.0",
"nette/utils": "^2.4 || ^3.0",
"doctrine/annotations": "~1.6",
"kdyby/doctrine-cache": "^3.0"
},
"require-dev": {
"nette/bootstrap": "^3.0",
"nette/tester": "^2.2",
"kdyby/coding-standard": "dev-master",
"phpstan/phpstan-shim": "^0.11.4",
"jakub-onderka/php-parallel-lint": "^1.0",
"php-coveralls/php-coveralls": "^2.1"
},
"conflict": {
"nette/caching": "<2.5.0",
"nette/finder": "<2.4.1",
"nette/neon": "<2.4.2",
"nette/utils": "<2.4.5",
"kdyby/doctrine": "0.9.*"
},
"autoload": {
"psr-4": {
"Kdyby\\Annotations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KdybyTests\\": "tests/KdybyTests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.6-dev"
}
}
}