This repository has been archived by the owner on May 29, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
63 lines (63 loc) · 2.12 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "symplify/git-wrapper",
"description": "A PHP wrapper around the Git command line utility.",
"license": "MIT",
"keywords": ["git", "git wrapper", "cli"],
"require": {
"php": ">=8.0",
"symfony/process": "^6.0",
"symfony/event-dispatcher": "^6.0",
"nette/utils": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symplify/package-builder": "^10.3",
"symplify/smart-file-system": "^10.3",
"psr/log": "^1.1",
"ondram/ci-detector": "^4.1"
},
"autoload": {
"psr-4": {
"Symplify\\GitWrapper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\GitWrapper\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "10.3-dev"
}
},
"conflict": {
"symplify/astral": "<10.2.7",
"symplify/composer-json-manipulator": "<10.2.7",
"symplify/easy-coding-standard": "<10.2.7",
"symplify/phpstan-rules": "<10.2.7",
"symplify/easy-testing": "<10.2.7",
"symplify/rule-doc-generator-contracts": "<10.2.7",
"symplify/php-config-printer": "<10.2.7",
"symplify/autowire-array-parameter": "<10.2.7",
"symplify/package-builder": "<10.2.7",
"symplify/phpstan-extensions": "<10.2.7",
"symplify/rule-doc-generator": "<10.2.7",
"symplify/vendor-patches": "<10.2.7",
"symplify/skipper": "<10.2.7",
"symplify/smart-file-system": "<10.2.7",
"symplify/symfony-static-dumper": "<10.2.7",
"symplify/symplify-kernel": "<10.2.7",
"symplify/monorepo-builder": "<10.2.7",
"symplify/config-transformer": "<10.2.7",
"symplify/easy-ci": "<10.2.7",
"symplify/coding-standard": "<10.2.7",
"symplify/latte-phpstan-compiler": "<10.2.2",
"symplify/template-phpstan-compiler": "<10.2.2",
"symplify/phpstan-latte-rules": "<10.2.2",
"symplify/easy-parallel": "<10.2.7",
"symplify/neon-config-dumper": "<10.2.7"
},
"minimum-stability": "dev",
"prefer-stable": true
}