-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
54 lines (54 loc) · 1.39 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
{
"name": "ccmbenchmark/ting",
"description": "Ting : a lightweight datamapper",
"homepage": "http://tech.ccmbg.com/ting/",
"keywords": [
"datamapper",
"database",
"mapper",
"model",
"entity",
"unitofwork",
"repository",
"mysql",
"pgsql"
],
"support": {
"issues": "https://bitbucket.org/ccmbenchmark/ting/issues",
"source": "https://bitbucket.org/ccmbenchmark/ting",
"docs": "http://tech.ccmbg.com/ting/doc/en/"
},
"type": "library",
"license": "Apache-2.0",
"require": {
"php": ">=8.0",
"aura/sqlquery": "^2.6",
"doctrine/cache": "^1.6",
"symfony/property-access": "^6.0 || ^7.0"
},
"require-dev": {
"ext-pgsql": "*",
"ext-mysqli": "*",
"atoum/atoum": "^4.0",
"atoum/stubs": "^2.0",
"brick/geo": "^0.5.1",
"pimple/pimple": "^3.0",
"symfony/uid": "^6.0 || ^7.0",
"symfony/cache": "^6.0 || ^7.0"
},
"suggest": {
"brick/geo": "Allow support of MariaDB Geometry type",
"pimple/pimple": "Service container.",
"symfony/uid": "To work with Uuid."
},
"autoload": {
"psr-4" : {
"CCMBenchmark\\Ting\\": "src/Ting/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\fixtures\\": "tests/fixtures/"
}
}
}