-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 982 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
{
"name": "phpfui/orm",
"description": "Minimal ORM for MySQL, SQLite and MariaDB",
"minimum-stability": "stable",
"keywords": ["ORM", "object", "relational", "model", "mapping", "mapper", "MySQL", "MariaDB", "SQLite", "SQL"],
"homepage": "http://www.phpfui.com/?n=PHPFUI%5CORM",
"license": "MIT",
"authors": [
{
"name": "Bruce Wells",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1 <8.5",
"phpfui/translation": "^1.0",
"psr/log": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "<=11.99",
"phpfui/phpunit-syntax-coverage": "^1.0",
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.0",
"nesbot/carbon": "*",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": {"PHPFUI\\": "src/PHPFUI/"}
},
"autoload-dev": {
"psr-4": {"Fixtures\\": "tests/Fixtures/"}
}
}