-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
36 lines (36 loc) · 976 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
{
"name": "activecollab/databasestructure",
"type": "library",
"description": "Define database structure in PHP and let the library generate object classes and tables",
"license": "MIT",
"keywords": [
"persistence",
"mysql",
"activecollab",
"model"
],
"homepage": "https://labs.activecollab.com",
"authors": [
{
"name": "Ilija Studen",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"ext-mysqli": "*",
"activecollab/databaseobject": "^7.0",
"activecollab/filesystem": "^0.10",
"activecollab/user": "^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"ActiveCollab\\DatabaseStructure\\": "src",
"ActiveCollab\\DatabaseStructure\\Test\\": "test/src"
}
}
}