-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 936 Bytes
/
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
{
"name": "benzine/orm",
"description": "The Benzine Database Access Layer. Includes generation of models, controllers and so on from schema.",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Matthew Baggett",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ext-simplexml": "*",
"ext-pdo": "*",
"matthewbaggett/twig-extension-inflect": "^1.0",
"matthewbaggett/twig-extension-transform": "^1.0",
"matthewbaggett/uuid": "^2.3",
"laminas/laminas-db": "^2.11.1",
"mattketmo/camel": "^1.1",
"nesbot/carbon": "^2.0",
"robmorgan/phinx": "^0.12.1"
},
"require-dev": {
"benzine/core": "dev-main",
"benzine/dev-tools": "dev-main"
},
"autoload": {
"psr-4": {
"Benzine\\ORM\\": "src",
"Benzine\\ORM\\Tests\\": "test/app/src"
}
},
"bin": [
"bin/laminator",
"bin/wait-for-mysql"
]
}