-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
73 lines (73 loc) · 1.71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "roufy235/multive",
"description": "A simple php framework",
"keywords": [
"php",
"slim-micro-framework",
"rest-api",
"mysql",
"slim4",
"slim",
"rest",
"api",
"web"
],
"type": "library",
"homepage": "https://github.com/roufy235/Multive",
"license": "MIT",
"authors": [
{
"name": "Abdulrouf Olatunbosun Bello",
"email": "[email protected]",
"homepage": "https://github.com/roufy235"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1.2",
"slim/slim": "4.*",
"slim/psr7": "^1.2",
"slim/php-view": "^3.0",
"ext-json": "*",
"ext-pdo": "*",
"phpmailer/phpmailer": "^6.1",
"php-di/php-di": "^6.2",
"vlucas/phpdotenv": "^5.2",
"egulias/email-validator": "^2.1",
"rbdwllr/reallysimplejwt": "^3.1",
"monolog/monolog": "^2.2",
"slim/csrf": "^1.2",
"catfan/medoo": "^1.7",
"ext-readline": "*",
"symfony/console": "^5.2",
"symfony/polyfill-uuid": "^1.22",
"illuminate/database": "^10.2"
},
"autoload": {
"classmap": ["controllers/", "tests/", "bin/Commands"],
"files": [
"./helpers/TokenGenerator.php",
"./controllers/SQL.php",
"./helpers/myFunctions.php",
"./helpers/session.php"
],
"psr-4": {
"MultiveCLI\\": "bin/Commands",
"MultiveLogger\\": "controllers/factory",
"MultiveModels\\": "models/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"start": "php -S localhost:8080"
},
"config": {
"process-timeout": 0
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9"
}
}