-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
32 lines (32 loc) · 879 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
{
"name": "mborne/remote-git",
"type": "library",
"description": "A lightweight PHP client providing a consistent way to find hosted and self-hosted git repositories (github, gitlab,...)",
"license": "MIT",
"authors": [
{
"name": "Mickaël BORNE",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"MBO\\RemoteGit\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"MBO\\RemoteGit\\Tests\\": "tests"
}
},
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "~7.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "3.17.*",
"phpmd/phpmd": "^2.8",
"pdepend/pdepend": "2.15.*",
"php-coveralls/php-coveralls": "^2.5",
"phpstan/phpstan": "^1.10"
}
}