-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 1.03 KB
/
composer.json
File metadata and controls
33 lines (33 loc) · 1.03 KB
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": "timephp/database",
"type": "library",
"license": "GPL-3.0-or-later",
"description": "Database support for TimePHP",
"homepage": "https://github.com/TimePHP-org/TimePHP-Database",
"keywords": ["TimePHP", "Framework", "PHP", "MVC", "Database"],
"minimum-stability": "stable",
"readme": "https://github.com/TimePHP-org/TimePHP-Database/blob/master/README.md",
"support": {
"email": "timephp.org@gmail.com",
"docs": "https://timephp-org.github.io/TimePHP-Docs/#/",
"issues": "https://github.com/TimePHP-org/TimePHP-Database/issues",
"source": "https://github.com/TimePHP-org/TimePHP-Database/releases"
},
"authors": [
{
"name": "Robin B",
"email": "timephp.org@gmail.com",
"role": "developer"
}
],
"require": {
"illuminate/database": "^8.6",
"illuminate/events": "^8.6",
"ramsey/uuid": "^4.1"
},
"autoload": {
"psr-4":{
"TimePHP\\": "src/"
}
}
}