forked from mborne/satis-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 933 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
40
{
"name": "netresearch/satis-gitlab",
"type": "project",
"description": "composer/satis extended with the ability to generate SATIS configuration",
"authors": [
{
"name": "Mickaël BORNE",
"email": "mborne@users.noreply.github.com"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"MBO\\SatisGit\\": "src/MBO/SatisGit"
}
},
"autoload-dev": {
"psr-4": {
"MBO\\SatisGit\\Tests\\": "tests"
}
},
"bin": [
"bin/satis-git"
],
"require": {
"ext-json": "*",
"mborne/remote-git": "~0.2",
"symfony/console": "^6.2",
"composer/satis": "dev-main"
},
"require-dev": {
"phpunit/phpunit": "^10",
"php-coveralls/php-coveralls": "^2.5"
},
"config": {
"allow-plugins": {
"composer/satis": true
}
}
}