-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (35 loc) · 910 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": "opencodeco/matrix",
"type": "library",
"license": "MIT",
"description": "A multi-tenant library for Hyperf APIs.",
"authors": [
{
"name": "Diego Ananias",
"email": "diegohsananias@gmail.com"
}
],
"require": {
"php": "^8.0",
"hyperf/database": "^3.0",
"hyperf/di": "^3.0",
"hyperf/command": "^3.0",
"hyperf/db-connection": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"hyperf/testing": "^3.0"
},
"autoload": {
"psr-4": {
"OpenCodeCo\\Matrix\\": "src/"
}
},
"scripts": {
"post-update-cmd": "php bin/hyperf.php matrix:publish",
"post-install-cmd": "php bin/hyperf.php matrix:publish",
"post-autoload-dump": [
"OpenCodeCo\\Matrix\\ComposerScripts::postAutoloadDump"
]
}
}