-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 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
{
"name": "ecommit/deploy-rsync-bundle",
"description": "Deploy Symfony project with Rsync",
"keywords": ["symfony", "deploy", "rsync", "ssh", "symfony-bundle"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Hubert Lecorche",
"email": "contact@e-commit.fr"
}
],
"autoload": {
"psr-4": { "Ecommit\\DeployRsyncBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ecommit\\DeployRsyncBundle\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"require": {
"php": "^8.1",
"ext-mbstring": "*",
"symfony/config": "^6.4|^7.1",
"symfony/console": "^6.4|^7.1",
"symfony/dependency-injection": "^6.4|^7.1",
"symfony/framework-bundle": "^6.4|^7.1",
"symfony/http-kernel": "^6.4|^7.1",
"symfony/process": "^6.4|^7.1"
},
"require-dev": {
"dg/bypass-finals": "^1.3",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^9"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}