-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.88 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "sonsofphp/bard",
"description": "Tool to help manage PHP monorepos using GitHub",
"keywords": [
"bard",
"sonsofphp",
"monorepo",
"manager"
],
"type": "project",
"bin": [
"bin/bard"
],
"require": {
"php": ">=8.2",
"sonsofphp/event-dispatcher": "^0.3.x-dev",
"sonsofphp/json": "^0.3.x-dev",
"sonsofphp/logger": "^0.3.x-dev",
"sonsofphp/version": "^0.3.x-dev",
"symfony/console": "^4 || ^5 || ^6 || ^7",
"symfony/dotenv": "^5 || ^6 || ^7",
"symfony/finder": "^5 || ^6 || ^7",
"symfony/process": "^5 || ^6 || ^7"
},
"license": "MIT",
"autoload": {
"psr-4": {
"SonsOfPHP\\Bard\\": "src/"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"SonsOfPHP\\Bard\\Tests\\": "Tests/"
}
},
"minimum-stability": "dev",
"config": {
"sort-packages": true
},
"extra": {
"sort-packages": true,
"branch-alias": {
"dev-main": "0.3.x-dev"
}
},
"support": {
"issues": "https://github.com/SonsOfPHP/sonsofphp/issues",
"forum": "https://github.com/orgs/SonsOfPHP/discussions",
"docs": "https://docs.sonsofphp.com"
},
"authors": [
{
"name": "Sons of PHP Community",
"homepage": "https://github.com/SonsOfPHP/sonsofphp/graphs/contributors"
},
{
"name": "Joshua Estes",
"email": "[email protected]"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/JoshuaEstes"
},
{
"type": "tidelift",
"url": "https://tidelift.com/subscription/pkg/packagist-sonsofphp-sonsofphp"
}
]
}