-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.21 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.21 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
{
"name": "silverorange/package_release",
"description": "Command-line tool to release a new version of a composer package.",
"type": "library",
"keywords": [ "composer", "release", "git", "package" ],
"homepage": "https://github.com/silverorange/package_release",
"license": "MIT",
"authors": [
{
"name": "Michael Gauthier",
"email": "mike@silverorange.com"
}
],
"require": {
"php": ">=7.1.0",
"ext-json": "*",
"ext-mbstring": "*",
"hassankhan/config": "2.1.0",
"symfony/console": "^4.0",
"symfony/lock": "^4.0",
"symfony/process": "^4.0"
},
"require-dev": {
"silverorange/coding-standard": "^0.7.0"
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"post-install-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src",
"post-update-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src"
},
"bin": [
"bin/package-release",
"bin/prepare-site"
],
"autoload": {
"psr-4": {
"Silverorange\\PackageRelease\\" : "src/"
}
}
}