forked from matteosister/GitElephant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.19 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
{
"name": "cypresslab/gitelephant",
"description": "An abstraction layer for git written in PHP",
"scripts": {
"tests": "./vendor/bin/phpunit",
"check-cs": "./vendor/bin/ecs check",
"fix-cs": "./vendor/bin/ecs check --fix"
},
"keywords": [
"git"
],
"homepage": "http://gitelephant.cypresslab.net/",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Matteo Giachino",
"email": "matteog@gmail.com"
}
],
"require": {
"php": ">=7.2.0",
"symfony/process": ">=3.4",
"symfony/filesystem": ">=3.4",
"symfony/finder": ">=3.4",
"phpcollection/phpcollection": "~0.4|~0.5"
},
"require-dev": {
"php": ">=7.2.0",
"phpunit/phpunit": "~8.0|~9.0",
"mockery/mockery": "~1.1",
"rector/rector": "*",
"symplify/easy-coding-standard": "*",
"phpstan/phpstan": "*",
"phpstan/phpstan-phpunit": "*"
},
"minimum-stability": "stable",
"autoload": {
"psr-0": {
"GitElephant": "src/"
}
},
"autoload-dev": {
"psr-0": {
"GitElephant": "tests/"
}
}
}