-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
39 lines (39 loc) · 924 Bytes
/
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
{
"name": "mborne/satis-gitlab",
"type": "project",
"description": "composer/satis extended with the ability to generate SATIS configuration",
"authors": [
{
"name": "Mickaël BORNE",
"email": "[email protected]"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"MBO\\SatisGitlab\\": "src/MBO/SatisGitlab"
}
},
"autoload-dev": {
"psr-4": {
"MBO\\SatisGitlab\\Tests\\": "tests"
}
},
"bin": [
"bin/satis-gitlab"
],
"require": {
"mborne/remote-git": "^0.7",
"symfony/console": "^5.4|^6.0|^7.0",
"composer/satis": "dev-main"
},
"require-dev": {
"phpunit/phpunit": "^9",
"php-coveralls/php-coveralls": "^2.5"
},
"config": {
"allow-plugins": {
"composer/satis": true
}
}
}