-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.13 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
{
"name": "rejoice/framework",
"type": "library",
"description": "Write easily your USSD based applications.",
"keywords": [
"ussd",
"whatsapp"
],
"homepage": "https://github.com/rejoice-framework/framework",
"license": "MIT",
"authors": [
{
"name": "Prince Damien Dorcis-Akpaglo",
"email": "[email protected]",
"role": "Maintainer",
"homepage": "https://github.com/prinx"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.3",
"prinx/dotenv": "^0.4",
"prinx/notify": "^0.0",
"prinx/phputils": "^0.0",
"prinx/dir-dot-config": "^0.0",
"prinx/string-utils": "^0.0",
"prinx/array-utils": "^0.0",
"prinx/os-utils": "^0.0",
"psy/psysh": "^0.10",
"illuminate/database": "^8.11",
"symfony/finder": "^5.2",
"peppeocchi/php-cron-scheduler": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.2",
"nunomaduro/collision": "^5.4"
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"files": [
"src/Support/helpers.php"
],
"psr-4": {
"Rejoice\\": "src/"
}
}
}