-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.63 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.63 KB
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
{
"name": "drenso/symfony-deployer-bundle",
"description": "Deploy scripting bundle for Symfony",
"version": "1.0.0",
"keywords": [
"symfony",
"deploy",
"deployment",
"scripting"
],
"type": "symfony-bundle",
"homepage": "https://gitlab.drenso.nl/intern/symfony-deployer-bundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Bob van de Vijver",
"email": "bob@drenso.nl"
},
{
"name": "Tobias Feijten",
"email": "tobias@drenso.nl"
}
],
"require": {
"php": ">=8.1",
"ext-hash": "*",
"doctrine/doctrine-bundle": "^2.11 || ^3",
"doctrine/orm": "^3.0",
"symfony/asset": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"symfony/validator": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"symfony/service-contracts": "^2 || ^3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.94.2",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "2.1.40",
"phpstan/phpstan-symfony": "2.0.15",
"rector/rector": "2.3.9",
"symfony/messenger": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"symfony/twig-bundle": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"twig/twig": "^3.4"
},
"autoload": {
"psr-4": {
"Drenso\\DeployerBundle\\": "src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}