forked from consistence/consistence-doctrine
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (43 loc) · 1.05 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
{
"name": "consistence-community/consistence-doctrine",
"description": "Integration of Consistence library with Doctrine ORM",
"license": "MIT",
"authors": [
{
"name": "Vašek Purchart",
"email": "[email protected]",
"homepage": "http://vasekpurchart.cz"
}
],
"require": {
"php": "~7.4 || ~8.0",
"consistence-community/consistence": "~2.1",
"doctrine/annotations": "~1.7 || ^2.0",
"doctrine/orm": "^2.10.0"
},
"require-dev": {
"consistence-community/coding-standard": "3.11.1",
"doctrine/cache": "^1.11",
"doctrine/persistence": "^1.3.5 || ^2.0",
"php-parallel-lint/php-parallel-lint": "1.3.1",
"phing/phing": "2.17.0",
"phpunit/phpunit": "9.5.10"
},
"replace": {
"consistence/consistence-doctrine": "2.*"
},
"autoload": {
"psr-4": { "Consistence\\Doctrine\\": [ "src" ] },
"classmap": [ "src" ]
},
"autoload-dev": {
"psr-4": { "Consistence\\Doctrine\\": [ "tests" ] },
"classmap": [ "tests" ]
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}