-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
39 lines (39 loc) · 990 Bytes
/
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
{
"name": "ccmbenchmark/ting-api-platform",
"description": "Api platform bridge for Ting",
"license": "Apache-2.0",
"type": "library",
"require": {
"php": ">=8.1",
"api-platform/core": "^3.2",
"ccmbenchmark/ting_bundle": "^3.6",
"ccmbenchmark/ting": "^3.8.0"
},
"require-dev": {
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"brick/geo": "^0.10.0"
},
"autoload": {
"files": [
"src/Safe/pcre.php"
],
"psr-4": {
"CCMBenchmark\\Ting\\ApiPlatform\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CCMBenchmark\\Ting\\ApiPlatform\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"suggest": {
"brick/geo": "Allow support of MariaDB Geometry type"
}
}