ORM/composer.json

38 lines
936 B
JSON

{
"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": "matthew@baggett.me"
}
],
"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"
]
}