-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 874 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
{
"name": "user/pusat-riset-informatika",
"description": "Pusat Riset Informatika",
"type": "project",
"require": {
"php": "^8.0",
"dompdf/dompdf": "^3.0",
"guzzlehttp/guzzle": "^7.9",
"phpoffice/phpword": "^1.3",
"symfony/var-dumper": "^6.0",
"twig/twig": "^3.5",
"vlucas/phpdotenv": "^5.5",
"ext-pdo": "*"
},
"autoload": {
"psr-4": {
"App\\": "App/",
"Core\\": "core/",
"Middleware\\": "middleware/",
"Helpers\\": "helpers/"
}
},
"scripts": {
"start": [
"php -S localhost:8000 -t public"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}