forked from CircleOfNice/DoctrineRestDriver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
72 lines (72 loc) · 1.66 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"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": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Circle",
"email": "[email protected]"
},
{
"name": "David Nurdin",
"email": "[email protected]"
}
],
"keywords": [
"REST API doctrine ORM DBAL driver"
],
"license": [
"GPL"
],
"require-dev": {
"symfony/expression-language": "^7",
"phpmd/phpmd" : "@stable",
"phpunit/phpunit" : "@stable",
"symfony/yaml": "^7",
"symfony/framework-bundle": "^7|^6",
"doctrine/doctrine-bundle": "^2",
"symfony/validator": "^7",
"ext-pdo": "*"
},
"autoload": {
"psr-4": {
"Circle\\RestClientBundle\\": "vendor/ci/restclientbundle/",
"Circle\\DoctrineRestDriver\\": "./"
},
"files": [
"Tests/app/AppKernel.php",
"Annotations/Delete.php",
"Annotations/Fetch.php",
"Annotations/Insert.php",
"Annotations/Select.php",
"Annotations/Update.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0.0-dev"
}
},
"require": {
"php": ">=8.2",
"doctrine/dbal": "^3",
"greenlion/php-sql-parser": "^4.0",
"doctrine/orm": "^3",
"ci/restclientbundle": "^3",
"symfony/asset": "^7.0",
"symfony/security-csrf": "^7.0",
"symfony/form": "^7.0",
"symfony/framework-bundle": "^7",
"doctrine/annotations": "^2.0",
"symfony/config": "^6|^7"
},
"repositories": [
{
"url": "/home/david/poc/ci_rest_client/CiRestClientBundle",
"type": "path"
}
]
}