Skip to content

Commit bf44f14

Browse files
committed
Add extra.branch-alias directive at composer.json in order to allow semver installs for development versions
1 parent 968b7e6 commit bf44f14

File tree

2 files changed

+55
-51
lines changed

2 files changed

+55
-51
lines changed

composer.json

Lines changed: 44 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,46 @@
11
{
2-
"name": "chrisboulton/php-resque",
3-
"type": "library",
4-
"description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby.",
5-
"keywords": ["job", "background", "redis", "resque"],
6-
"homepage": "http://www.github.com/chrisboulton/php-resque/",
7-
"license": "MIT",
8-
"authors": [
9-
{
10-
"name": "Chris Boulton",
11-
"email": "[email protected]"
12-
}
13-
],
14-
"repositories": [
15-
{
16-
"type": "vcs",
17-
"url": "https://github.com/chrisboulton/credis"
18-
}
19-
],
20-
"require": {
21-
"php": ">=5.3.0",
22-
"ext-pcntl": "*",
23-
"colinmollenhour/credis": "~1.7",
24-
"psr/log": "~1.0"
25-
},
26-
"suggest": {
27-
"ext-proctitle": "Allows php-resque to rename the title of UNIX processes to show the status of a worker.",
28-
"ext-redis": "Native PHP extension for Redis connectivity. Credis will automatically utilize when available."
29-
},
30-
"require-dev": {
31-
"phpunit/phpunit": "3.7.*"
32-
},
33-
"bin": [
34-
"bin/resque"
35-
],
36-
"autoload": {
37-
"psr-0": {
38-
"Resque": "lib"
39-
}
40-
}
2+
"name": "chrisboulton/php-resque",
3+
"type": "library",
4+
"description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby.",
5+
"keywords": ["job", "background", "redis", "resque"],
6+
"homepage": "http://www.github.com/chrisboulton/php-resque/",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Chris Boulton",
11+
"email": "[email protected]"
12+
}
13+
],
14+
"repositories": [
15+
{
16+
"type": "vcs",
17+
"url": "https://github.com/chrisboulton/credis"
18+
}
19+
],
20+
"require": {
21+
"php": ">=5.3.0",
22+
"ext-pcntl": "*",
23+
"colinmollenhour/credis": "~1.7",
24+
"psr/log": "~1.0"
25+
},
26+
"suggest": {
27+
"ext-proctitle": "Allows php-resque to rename the title of UNIX processes to show the status of a worker.",
28+
"ext-redis": "Native PHP extension for Redis connectivity. Credis will automatically utilize when available."
29+
},
30+
"require-dev": {
31+
"phpunit/phpunit": "3.7.*"
32+
},
33+
"bin": [
34+
"bin/resque"
35+
],
36+
"autoload": {
37+
"psr-0": {
38+
"Resque": "lib"
39+
}
40+
},
41+
"extra": {
42+
"branch-alias": {
43+
"dev-master": "1.0-dev"
44+
}
45+
}
4146
}

composer.lock

Lines changed: 11 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)