-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.29 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
46
47
48
49
50
{
"name": "bayfrontmedia/bones",
"description": "A PHP framework used to build web apps using the MVC (model-view-controller) design pattern.",
"homepage": "https://github.com/bayfrontmedia/bones",
"license" : "MIT",
"type": "project",
"keywords": [
"php",
"framework",
"mvc",
"bones"
],
"authors": [
{
"name": "John Robinson",
"email": "[email protected]",
"homepage": "https://www.bayfrontmedia.com"
}
],
"support": {
"issues": "https://github.com/bayfrontmedia/bones/issues"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"autoload": {
"psr-4": {
"Bayfront\\Bones\\": "src/"
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"bayfrontmedia/container": "^3.0",
"bayfrontmedia/cron-scheduler": "^2.0",
"bayfrontmedia/encryptor": "^2.0",
"bayfrontmedia/php-array-helpers": "^2.0",
"bayfrontmedia/php-hooks": "^2.0",
"bayfrontmedia/php-http-request": "^v3.1",
"bayfrontmedia/php-http-response": "^2.0",
"bayfrontmedia/php-time-helpers": "^2.0",
"bayfrontmedia/route-it": "^3.1",
"bayfrontmedia/simple-pdo": "^5.4",
"bayfrontmedia/veil": "^2.1",
"filp/whoops": "^2.16",
"symfony/console": "^7.2",
"vlucas/phpdotenv": "^5.6"
}
}