-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
58 lines (58 loc) · 1.34 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
{
"name": "console-helpers/svn-buddy",
"description": "Easier way to control work with Subversion repositories from command-line",
"keywords": ["subversion", "svn", "cli"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexander Obuhovich",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6|>=7.0.8",
"symfony/process": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"console-helpers/console-kit": "^0.4",
"aura/sql": "^3.0 || ^4.0 || ^5.0",
"padraic/phar-updater": "dev-use-curl",
"padraic/humbug_get_contents": "^1.0",
"console-helpers/db-migration": "^0.2.0",
"ext-simplexml": "*",
"ext-zlib": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-sqlite3": "*",
"fiasco/symfony-console-style-markdown": "^1.2"
},
"require-dev": {
"aik099/coding-standard": "dev-master",
"yoast/phpunit-polyfills": "^2.0",
"phpspec/prophecy": "^1.10",
"console-helpers/prophecy-phpunit": "^3.0"
},
"autoload": {
"files": [
"svn-buddy_autoloader.php"
],
"psr-4": {
"ConsoleHelpers\\SVNBuddy\\": "src/SVNBuddy/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\ConsoleHelpers\\SVNBuddy\\": "tests/SVNBuddy/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"bin": ["bin/svn-buddy"],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/console-helpers/phar-updater"
}
]
}