forked from Rarst/release-belt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.1 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
{
"name": "rarst/release-belt",
"description": "Composer repository for ZIPs",
"license": "MIT",
"authors": [
{
"name": "Andrey Savchenko",
"homepage": "https://www.Rarst.net/"
}
],
"support": {
"issues": "https://github.com/Rarst/release-belt/issues"
},
"require": {
"php": ">=7.1.3",
"symfony/finder": "^4.1.6",
"league/fractal": "~0.10",
"monolog/monolog": "^1.23",
"slim/slim": "^3.11",
"danjam/slim-mustache-view": "^1.1",
"tuupola/slim-basic-auth": "^3.2.1",
"akrabat/ip-address-middleware": "^1.0.1"
},
"autoload": {
"psr-4": {
"Rarst\\ReleaseBelt\\": "src/"
}
},
"require-dev": {
"pds/skeleton": "^1.0"
},
"scripts": {
"belt-update": [
"git fetch --tags",
"@php bin/checkoutLatestTag.php",
"@composer install --no-dev --optimize-autoloader"
]
},
"scripts-descriptions": {
"belt-update": "Performs update to the latest Release Belt version."
}
}