-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 loc) · 930 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
{
"name": "pionia/pionia-app",
"description": "Making Restful API development more restful \uD83D\uDCA4",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"Application\\": "",
"Application\\Services\\": "services/",
"Application\\Switches\\": "switches/",
"Application\\Authentications\\": "authentications/",
"Application\\Middlewares\\": "middlewares/",
"Application\\Commands\\": "commands/"
}
},
"authors": [
{
"name": "jet2018",
"email": "ezrajet9@gmail.com"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-pdo": "*",
"pionia/pionia-core": "^2.0"
},
"scripts": {
"post-create-project-cmd": [
"php storage/scripts/rename.php"
]
}
}