-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.08 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
{
"name": "darsyn/ip-doctrine",
"description": "Doctrine types for darsyn/ip",
"license": "MIT",
"keywords": ["doctrine", "ip"],
"type": "library",
"homepage": "https://github.com/darsyn/ip-doctrine",
"authors": [
{
"name": "Zan Baldwin",
"email": "[email protected]",
"homepage": "https://zanbaldwin.com"
}
],
"autoload": {
"psr-4": {
"Darsyn\\IP\\Doctrine\\": "src/"
}
},
"require": {
"php": ">=5.6",
"ext-pdo": "*",
"darsyn/ip": "^5.0",
"doctrine/dbal": "^2.3 || ^3"
},
"autoload-dev": {
"psr-4": {
"Darsyn\\IP\\Tests\\Doctrine\\": "tests/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpunit/phpunit": "*"
},
"conflict": {
"doctrine/dbal": ">=4"
},
"prefer-stable": true,
"config": {
"sort-packages": true
},
"suggest": {
"doctrine/dbal": "to use IP as a column type"
}
}