-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.02 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
{
"name": "emri99/gitlab-generic-api-client",
"license": "MIT",
"type": "library",
"description": "PHP GitLab generic API client (not stick to any version)",
"homepage": "https://github.com/emri99/gitlab-generic-api-client",
"keywords": ["gitlab", "api"],
"authors": [
{
"name": "Cyril MERY",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"mashape/unirest-php": "^3.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Emri99\\Gitlab\\": "src\\"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.7",
"friendsofphp/php-cs-fixer": "2.*"
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --config=.php_cs --show-progress=estimating --verbose",
"cs-dryrun": "vendor/bin/php-cs-fixer fix --config=.php_cs --show-progress=estimating --verbose --dry-run"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}