-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.35 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
{
"name": "matatirosoln/doctrine-filemaker-driver-bundle",
"type": "library",
"description": "Symfony bundle to implement one of the FileMaker Doctrine drivers",
"keywords": ["FileMaker", "PHP API", "CWP"],
"authors": [
{
"name": "Steve Winter",
"email": "[email protected]",
"homepage": "https://msdev.co.uk"
}
],
"license" : "MIT",
"_comment": "",
"require": {
"php": ">=7.2.0",
"ext-json": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"doctrine/orm": "2.*",
"doctrine/dbal": "3.*",
"symfony/http-client": "^5.4|^6.0|^7.0",
"symfony/console": "^5.4|^6.0|^7.0",
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
"symfony/http-kernel": "^5.4|^6.0|^7.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"twig/twig": "^1.38||^2.7||^3.0"
},
"suggest": {
"matatirosoln/doctrine-filemaker-driver": "Use FileMaker through CWP as your backend database",
"matatirosoln/doctrine-fm-data-api-driver": "Use FileMaker via the v17+ Data API as your backend database"
},
"autoload": {
"psr-4": {
"MSDev\\DoctrineFileMakerDriverBundle\\": ""
}
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
}
}