-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.17 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
{
"name": "bayfrontmedia/bones-service-api",
"description": "API service to be used with the Bones framework",
"homepage": "https://github.com/bayfrontmedia/bones-service-api",
"license" : "MIT",
"type": "library",
"keywords": [
"php",
"framework",
"bones",
"api"
],
"authors": [
{
"name": "John Robinson",
"email": "john@bayfrontmedia.com",
"homepage": "https://www.bayfrontmedia.com"
}
],
"support": {
"issues": "https://github.com/bayfrontmedia/bones-service-api/issues"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"require": {
"php": "^8.0",
"bayfrontmedia/bones": "^5.3",
"bayfrontmedia/bones-service-orm": "^1.0",
"bayfrontmedia/bones-service-rbac": "^1.0",
"bayfrontmedia/array-schema": "^2.1",
"bayfrontmedia/leaky-bucket": "^2.2",
"bayfrontmedia/php-array-helpers": "^2.0",
"bayfrontmedia/php-http-request": "^3.1",
"bayfrontmedia/php-http-response": "^2.0",
"bayfrontmedia/php-string-helpers": "^2.2",
"bayfrontmedia/php-validator": "^4.0"
},
"autoload": {
"psr-4": {
"Bayfront\\BonesService\\Api\\": "src/"
}
}
}