-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcomposer.json
52 lines (52 loc) · 1.15 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
{
"name": "circle/doctrine-rest-driver",
"description": "Use a REST API as if it was your local database",
"type": "library",
"authors": [
{
"name": "Circle",
"email": "[email protected]"
}
],
"keywords": [
"REST API doctrine ORM DBAL driver"
],
"license": [
"GPL"
],
"require-dev": {
"symfony/expression-language": "^3.0",
"phpmd/phpmd" : "@stable",
"phpunit/phpunit" : "@stable",
"symfony/yaml": "3.*",
"sensio/framework-extra-bundle": "3.*",
"symfony/framework-bundle": "3.*",
"doctrine/doctrine-bundle": "^1.6",
"symfony/validator": "3.*"
},
"autoload": {
"psr-0": {
"Circle\\DoctrineRestDriver": ""
},
"files": [
"Annotations/Delete.php",
"Annotations/Fetch.php",
"Annotations/Insert.php",
"Annotations/Select.php",
"Annotations/Update.php"
]
},
"target-dir": "Circle/DoctrineRestDriver",
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
},
"require": {
"php": ">=5.5",
"doctrine/dbal": "2.*",
"greenlion/php-sql-parser": "^4.0",
"doctrine/orm": "2.*",
"ci/restclientbundle": "^2.0.2"
}
}