-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
44 lines (44 loc) · 1.07 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
{
"name": "consolidation/self-update",
"description": "Provides a self:update command for Symfony Console applications.",
"license": "MIT",
"authors": [
{
"name": "Alexander Menk",
"email": "[email protected]"
},
{
"name": "Greg Anderson",
"email": "[email protected]"
}
],
"autoload":{
"psr-4":{
"SelfUpdate\\":"src"
}
},
"require": {
"php": "^8.1",
"composer/semver": "^3.2",
"guzzlehttp/guzzle": "^7.9",
"kevinrob/guzzle-cache-middleware": "^5.1",
"symfony/cache": "^5.4 || ^6.4 || ^7",
"symfony/console": "^5.4 || ^6.4 || ^7",
"symfony/filesystem": "^5.4 || ^6.4 || ^7"
},
"bin": [
"scripts/release"
],
"scripts": {
"release": "./scripts/release VERSION"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
}
}