-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1003 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
36
37
38
39
40
{
"name": "romega/clocktower",
"description": "Offers a controller interfaces for easily implementing REST API methods.",
"keywords": [
"romega",
"api",
"json",
"rest"
],
"homepage": "https://romegadigital.com/",
"license": "MIT",
"type": "package",
"authors": [
{
"name": "Braden Keith",
"email": "[email protected]",
"homepage": "https://bradenkeith.com/",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.2|^8.0|^8.1|^8.2|^8.3|^8.4",
"illuminate/http": "~5.0|~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
"spatie/laravel-fractal": "^5.3|^5.6|^6.0"
},
"autoload": {
"psr-4": {
"Romega\\Clocktower\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Romega\\Clocktower\\Test\\": "test"
}
},
"minimum-stability": "dev"
}