-
Notifications
You must be signed in to change notification settings - Fork 69
/
composer.json
50 lines (50 loc) · 1.62 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
49
50
{
"name": "cpliakas/git-wrapper",
"description": "A PHP wrapper around the Git command line utility.",
"keywords": ["git", "git wrapper", "cli"],
"license": "MIT",
"authors": [
{ "name": "Chris Pliakas", "email": "[email protected]" },
{ "name": "Tomas Votruba", "email": "[email protected]" }
],
"require": {
"php": ">=7.3",
"symfony/process": "^4.4|^5.1",
"symfony/event-dispatcher": "^4.4|^5.1",
"nette/utils": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/filesystem": "^4.4|^5.1",
"psr/log": "^1.1",
"symplify/easy-coding-standard": "^9.0",
"phpstan/phpstan": "^0.12.64",
"symplify/changelog-linker": "^9.0",
"symplify/phpstan-extensions": "^9.0",
"rector/rector": "^0.9",
"tracy/tracy": "^2.7",
"phpstan/phpstan-phpunit": "^0.12",
"symplify/phpstan-rules": "^9.0",
"ondram/ci-detector": "^3.5"
},
"autoload": {
"psr-4": {
"GitWrapper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GitWrapper\\Tests\\": "tests"
}
},
"suggest": {
"monolog/monolog": "Enables logging of executed git commands"
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --error-format symplify --ansi",
"changelog": "vendor/bin/changelog-linker dump-merges --in-categories --ansi",
"rector": "vendor/bin/rector process --dry-run --ansi"
}
}