-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.06 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
{
"name": "julianschmuckli/restwork",
"version": "1.0.0",
"keywords": ["rest", "api", "restwork", "framework", "restful"],
"homepage": "https://github.com/julianschmuckli/restwork",
"description": "RESTwork is a PHP framework to design a RESTful API service with minimum effort.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Julianschmuckli\\Restwork\\": "src/"
}
},
"authors": [
{
"name": "Julian Schmuckli",
"email": "julian@schmuckli.net",
"homepage": "https://schmuckli.net",
"role": "Developer"
}
],
"support": {
"email": "julian@schmuckli.net"
},
"require": {
"php" : ">=8.0"
},
"scripts": {
"post-install-cmd": [
"Julianschmuckli\\Restwork\\Setup\\Structure::setup"
],
"post-package-install": [
"Julianschmuckli\\Restwork\\Setup\\Structure::setup"
],
"test_autoload": [
"composer dump-autoload -o"
]
}
}