forked from webcreate/vcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 900 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": "webcreate/vcs",
"type": "library",
"keywords": ["vcs", "svn", "git", "versioncontrol", "subversion"],
"description": "PHP interface for version control systems",
"homepage": "https://github.com/webcreate/vcs",
"license": "MIT",
"authors": [
{
"name": "Jeroen Fiege",
"email": "[email protected]",
"homepage": "http://www.fieg.nl"
}
],
"autoload": {
"psr-0": {
"Webcreate": ["src/", "tests/"]
}
},
"require": {
"symfony/process": "~2.3|~3.0|~4.0",
"symfony/finder": ">=v2.1.2 <3.0|~3.0|~4.0",
"symfony/filesystem": ">=v2.1.2 <3.0|~3.0|~4.0",
"webcreate/util": "1.*"
},
"require-dev": {
"phpunit/phpunit": "^4.0"
},
"suggest": {
"symfony/event-dispatcher": "Allows to hook into VCS with events"
}
}