-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.03 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
{
"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": "brucekwells@gmail.com"
}
],
"require": {
"php": ">=8.1 <8.5",
"phpfui/translation": "^1.0",
"psr/log": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0 | ^11.0 | ^12.0",
"phpfui/phpunit-syntax-coverage": "^1.0",
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "*",
"nesbot/carbon": "*",
"phpstan/phpstan": "*"
},
"autoload": {
"psr-4": {"PHPFUI\\": "src/PHPFUI/"}
},
"autoload-dev": {
"psr-4": {
"Fixtures\\": "Tests/Fixtures/",
"Tests\\App\\": "Tests/App/"
}
}
}