-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.27 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
{
"name": "biurad/monorepo",
"description": "Library for working with Git repositories and PHP as a monorepo",
"keywords": ["git", "monorepo", "repository", "repositories", "library", "php", "biurad"],
"homepage": "https://biurad.com",
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "[email protected]"
},
{
"name": "GitHub Contributors",
"homepage": "https://github.com/biurad/php-monorepo/contributors"
}
],
"support": {
"docs": "https://docs.biurad.com/poakium/monorepo"
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["bin/monorepo"],
"config": {
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require": {
"php": "^8.0",
"biurad/git-scm": "dev-master",
"symfony/console": "^6.0",
"symfony/options-resolver": "^6.0",
"symfony/process": "^6.0",
"symfony/yaml": "^6.0"
},
"require-dev": {
"psr/log": "^1.0 || ^3.0"
},
"autoload": {
"psr-4": {
"Biurad\\Monorepo\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"suggest": {
"psr/log": "Required to use loggers for reporting of execution"
}
}