Skip to content

Commit da85243

Browse files
authored
Create composer.json
1 parent aa54072 commit da85243

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

composer.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "dconco/php_slides",
3+
"description": "PhpSlides let you create a secured Routing in php and secured API, which prevents SQL injections, and from XSS attack & CSRF.",
4+
"homepage": "https://github.com/dconco/php_slides",
5+
"version": "1.1.0",
6+
"type": "project",
7+
"keywords": [
8+
"php",
9+
"api",
10+
"router",
11+
"php slides",
12+
"php_slides",
13+
"slides",
14+
"project",
15+
"server",
16+
"framework"
17+
],
18+
"license": "MIT",
19+
"autoload": {
20+
"files": [
21+
"./App/Functions.php",
22+
"./configs/env.config.php",
23+
"./configs/cors.php"
24+
],
25+
"classmap": [ "*" ]
26+
},
27+
"scripts": {
28+
"slides-refresh": "composer dump-autoload",
29+
"create-slides-app": "composer create-project dconco/php_slides"
30+
},
31+
"authors": [ {
32+
"name": "Dave Conco",
33+
"email": "[email protected]"
34+
} ],
35+
"require": {
36+
"php": "^8.0",
37+
"firebase/php-jwt": "^6.9",
38+
"vlucas/phpdotenv": "^5.5"
39+
},
40+
"config": {
41+
"sort-packages": true
42+
},
43+
"extra": {
44+
"symfony": {
45+
"allow-contrib": false
46+
}
47+
},
48+
"minimum-stability": "stable",
49+
"prefer-stable": true
50+
}

0 commit comments

Comments
 (0)