-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
48 lines (48 loc) · 1.03 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "sebastianfeldmann/git",
"description": "PHP git wrapper",
"type": "library",
"keywords": ["git"],
"homepage": "https://github.com/sebastianfeldmann/git",
"license": "MIT",
"authors": [
{
"name": "Sebastian Feldmann",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/sebastianfeldmann/git/issues"
},
"autoload": {
"psr-4": {
"SebastianFeldmann\\Git\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SebastianFeldmann\\Git\\": "tests/git/"
}
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"sebastianfeldmann/cli": "^3.0"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"scripts": {
"test": "tools/phpunit",
"analyse": "tools/phpstan analyse",
"style": "tools/phpcs --standard=psr12 src tests",
"style-fix": "tools/phpcbf --standard=psr12 src tests"
},
"require-dev": {
"mikey179/vfsstream": "^1.6"
}
}