-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.97 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
64
{
"name": "gregoriol/puscha",
"description": "A deployment tool to push change from a repository (Git/SVN) to a target (SFTP/FTP)",
"keywords": ["deployment", "svn", "git", "ftp", "sftp", "push", "deploy", "changes"],
"homepage": "https://github.com/GregOriol/Puscha",
"type": "project",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Greg ORIOL",
"email": "greg@gregoriol.net",
"homepage": "https://www.gregoriol.net",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/GregOriol/Puscha/issues"
},
"require": {
"php": "^7.1.3",
"ext-json": "*",
"psr/log": "^1.0",
"symfony/console": "^5.0",
"symfony/yaml": "^5.0",
"phpseclib/phpseclib": "^2.0",
"netresearch/jsonmapper": "dev-psr-5-types@dev",
"swaggest/json-schema": "^0.12",
"league/flysystem": "^2.0",
"league/flysystem-sftp": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"squizlabs/php_codesniffer": "^3.0",
"escapestudios/symfony2-coding-standard": "^3.0",
"blackfire/php-sdk": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"puscha"
],
"autoload": {
"psr-4": {
"Puscha\\": "src/Puscha"
}
},
"autoload-dev": {
"psr-4": {
"Puscha\\": "tests/Puscha"
}
},
"scripts": {
"test": "phpunit",
"codestyle": "phpcs --standard=vendor/escapestudios/symfony2-coding-standard/Symfony ./src/ ./tests/ --extensions=php -d memory_limit=1024M",
"codestyle-checkstyle": "phpcs --standard=vendor/escapestudios/symfony2-coding-standard/Symfony ./src/ ./tests/ --extensions=php -d memory_limit=1024M --report=checkstyle"
},
"repositories":
[
{
"type": "vcs",
"url": "https://github.com/GregOriol/jsonmapper/"
}
]
}