-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 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
{
"name": "nieuwland/ogc-serializer",
"description": "(de)serialize ogc documents",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Allart Kooiman",
"email": "akooiman@nieuwland.nl",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"Nieuwland\\OgcSerializer\\": "src/"
}
},
"require-dev": {
"doctrine/coding-standard": "^8.0",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "*",
"symfony/validator": "^5.4",
"doctrine/annotations": "^1.14",
"doctrine/cache": "*"
},
"require": {
"php": "^7.4 || ^8",
"jms/serializer": "^3.23",
"symfony/dom-crawler": "^5.4",
"symfony/cache": "^5.4"
},
"suggest": {
"symfony/validator": "^5.4",
"doctrine/annotations": "*",
"doctrine/cache": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}