-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
47 lines (47 loc) · 1.22 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
{
"name": "dconco/php_slides",
"description": "Slides to the next level in PHP using PhpSlides, a light MVC fast framework",
"homepage": "https://github.com/dconco/php_slides",
"version": "1.2.2",
"type": "project",
"keywords": [
"php",
"api",
"router",
"phpslides",
"php_slides",
"server",
"framework"
],
"license": "MIT",
"autoload": {
"classmap": ["*"]
},
"scripts": {
"slides-refresh": "composer dump-autoload",
"create-slides-app": "composer create-project dconco/php_slides"
},
"authors": [{
"name": "Dave Conco",
"email": "[email protected]",
"homepage": "https://dconco.github.io"
}],
"require": {
"php": "^8.0 || ^8.3",
"firebase/php-jwt": "^6.9",
"phpmailer/phpmailer": "^6.9",
"vlucas/phpdotenv": "^5.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": false
}
},
"minimum-stability": "stable",
"prefer-stable": true
}