This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.59 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
{
"name": "nepada/consistence-doctrine",
"type": "library",
"license": "BSD-3-Clause",
"description": "Consistence Enum types for Doctrine.",
"keywords": ["enum", "consistence", "doctrine"],
"support": {
"email": "[email protected]",
"issues": "https://github.com/nepada/consistence-doctrine/issues"
},
"authors": [
{
"name": "Petr Morávek",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4.0 <8.2",
"consistence/consistence": "^2.0@dev",
"doctrine/dbal": "^2.6@dev || ^3.0@dev"
},
"require-dev": {
"nette/tester": "2.4.2",
"mockery/mockery": "1.5.0",
"phpstan/phpstan": "1.8.2",
"phpstan/phpstan-strict-rules": "1.3.0",
"phpstan/phpstan-mockery": "1.1.0",
"nepada/phpstan-nette-tester": "0.4.0",
"spaze/phpstan-disallowed-calls": "2.5.0",
"shipmonk/phpstan-rules": "1.0.1",
"php-parallel-lint/php-parallel-lint": "1.3.2",
"nepada/coding-standard": "7.5.2",
"consistence-community/consistence": "^2.0@dev"
},
"autoload": {
"psr-4": {
"Nepada\\ConsistenceDoctrine\\": "src/ConsistenceDoctrine/"
}
},
"autoload-dev": {
"psr-4": {
"NepadaTests\\": "tests/"
}
},
"config": {
"platform-check": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"abandoned": true
}