forked from gunantos/CI4-RESTFULL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 2.16 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "appkita/ci4restful",
"description": "Library CI4 untuk pembuatan WEB API Restfull dilengkapi dengan Authentication type JWT, KEY, Basic, Digest yang bisa terintegrasi dengan database, memiliki fitur blacklist, whitelist, management api",
"type": "library",
"homepage": "https://app-kita.com/library/ci-restfull",
"autoload": {
"psr-4": {
"Appkita\\CI4Restful\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"codeigniter4/framework": "^4",
"firebase/php-jwt": "^5.2"
},
"require-dev": {
"fakerphp/faker": "^1.9",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.1"
},
"license": "MIT",
"authors": [
{
"name": "Gunanto Simamora",
"email": "[email protected]",
"homepage": "https://app-kita.com"
}
],
"scripts": {
"post-update-cmd": ["Appkita\\Restful\\ComposerScripts::postUpdate",
"php -r \"copy('app/Config/Restfull.php', '../../app/Config/Restfull.php');\"",
"php -r \"copy('app/Models/UserModel.php', '../../app/Models/UserModel.php');\""],
"post-install-cmd": ["Appkita\\Restful\\ComposerScripts::postPackageInstall",
"php -r \"copy('app/Config/Restfull.php', '../../app/Config/Restfull.php');\"",
"php -r \"copy('app/Models/UserModel.php', '../../app/Models/UserModel.php');\""],
"post-package-update": ["Appkita\\Restful\\ComposerScripts::postPackageInstall",
"php -r \"copy('app/Config/Restfull.php', '../../app/Config/Restfull.php');\"",
"php -r \"copy('app/Models/UserModel.php', '../../app/Models/UserModel.php');\""],
"post-package-install": [
"Appkita\\Restful\\ComposerScripts::postUpdate",
"php -r \"copy('app/Config/Restfull.php', '../../app/Config/Restfull.php');\"",
"php -r \"copy('app/Models/UserModel.php', '../../app/Models/UserModel.php');\""
],
"test": "phpunit"
},
"support": {
"forum": "http://app-kita.com/",
"source": "https://github.com/gunantos/CI4-RESTFULL",
"slack": "app-kita.slack.com"
}
}