-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.25 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.25 KB
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
{
"name": "operations/git-split",
"type": "composer-plugin",
"description": "Adds composer git:split composer command for easy splitting of a git repository into many others.",
"keywords": [],
"homepage": "https://drupal.org/project/operations",
"license": "GPL-2.0-or-later",
"support": {
"chat": "https://drupal.slack.com/archives/C05CM6A9UDN",
"issues": "https://www.drupal.org/project/issues/operations?categories=All",
"source": "https://git.drupalcode.org/project/operations"
},
"authors": [
{
"name": "Drupal Operations Contributors",
"homepage": "https://git.drupalcode.org/project/operations/-/graphs/1.x?ref_type=heads"
},
{
"name": "Jon Pugh",
"role": "author",
"email": "jon@thinkdrop.net",
"homepage": "https://thinkdrop.net"
}
],
"require": {
"php": "^7.1||^8.0",
"composer-plugin-api": "^1.0 || ^2.0"
},
"require-dev": {
"symfony/console": "^4.4|^5.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"class": "Operations\\Composer\\Plugin\\GitSplit\\Composer\\Plugin"
},
"autoload": {
"psr-4": {
"Operations\\Composer\\Plugin\\GitSplit\\": ""
}
},
"bin": [
"bin/git-split"
],
"minimum-stability": "dev"
}