forked from CircleOfNice/DoctrineRestDriver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composerDistant.json
61 lines (61 loc) · 1.34 KB
/
composerDistant.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
55
56
57
58
59
60
61
{
"name": "circle/doctrine-rest-driver",
"description": "Use a REST API as if it was your local database",
"type": "library",
"version": "3.0.0",
"minimum-stability": "dev",
"prefer-stable": true,
"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": "3.0.0-dev"
}
},
"require": {
"php": ">=5.5",
"doctrine/dbal": "^3",
"greenlion/php-sql-parser": "^4.0",
"doctrine/orm": "^3",
"ci/restclientbundle": "^3"
},
"repositories": [
{
"url": "https://github.com/davidnurdin/CiRestClientBundle.git",
"type": "git"
}
]
}