-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 901 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 901 Bytes
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
{
"name": "delboy1978uk/bone-console",
"description": "Run Bone Framework in the terminal",
"license": "MIT",
"authors": [
{
"name": "Derek Stephen McLean",
"email": "delboy1978uk@gmail.com"
}
],
"require": {
"php": "^8.2",
"delboy1978uk/barnacle": "^2.3",
"delboy1978uk/booty": "^1.0",
"symfony/console": "^5.2 || ^6.0 || ^7.0",
"vlucas/phpdotenv": "^5.5"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"roave/security-advisories": "dev-latest"
},
"bin": [
"bin/bone"
],
"autoload": {
"psr-4": {
"Bone\\Console\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bone\\Tests\\": "tests/Unit/",
"Tests\\": "tests/"
}
}
}