-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
45 lines (45 loc) · 1.04 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
{
"name": "kdyby/doctrine-collections-readonly",
"type": "library",
"description": "Read-only collection wrapper for easier work with Doctrine entity collections",
"keywords": ["kdyby", "doctrine", "orm", "entity", "collection", "read-only", "readonly"],
"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]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Kdyby/DoctrineCollectionsReadonly/issues"
},
"require": {
"php": "^5.6 || ^7.0",
"doctrine/collections": "~1.1"
},
"require-dev": {
"nette/tester": "~1.7"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Kdyby\\Doctrine\\Collections\\Readonly\\": "src/"
},
"classmap": [
"src/exceptions.php"
]
},
"autoload-dev": {
"psr-4": {
"KdybyTests\\Doctrine\\Collections\\Readonly\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}