-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 855 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 855 Bytes
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
{
"name": "pinakes/slim-app",
"description": "Pinakes - Library Management System built with Slim 4",
"type": "project",
"license": "GPL-3.0-only",
"require": {
"php": "^8.1",
"slim/slim": "^4.13",
"slim/psr7": "^1.7",
"slim/csrf": "^1.0",
"php-di/php-di": "^7.0",
"monolog/monolog": "^3.6",
"phpmailer/phpmailer": "^6.10",
"vlucas/phpdotenv": "^5.6",
"tecnickcom/tcpdf": "^6.10",
"google/recaptcha": "^1.3",
"thepixeldeveloper/sitemap": "^5.1",
"emleons/sim-rating": "^2.1"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"scripts": {
"start": "php -S 127.0.0.1:8001 -t public",
"post-autoload-dump": [
"php -r \"file_exists('public/.htaccess') || copy('public/.htaccess.dist','public/.htaccess');\""
]
}
}