Skip to content
This repository was archived by the owner on Feb 7, 2022. It is now read-only.

Commit fe1bc19

Browse files
authored
composer update to latest version (#2)
* composer update to latest version * composer update to latest version
1 parent 45683e5 commit fe1bc19

File tree

3 files changed

+332
-157
lines changed

3 files changed

+332
-157
lines changed

.travis.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
language: php
22
php:
3-
- 5.3
4-
- 5.4
53
- 5.5
64
- 5.6
75
- 7.0
86
- hhvm
97

10-
before_install:
11-
- composer self-update
12-
138
install:
149
- sudo apt-get install gearman gearman-job-server libgearman-dev
1510
- printf "\n" | pecl install gearman-1.0.3

composer.json

Lines changed: 37 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,40 @@
11
{
2-
"name": "dmank/gearman",
3-
"type": "library",
4-
"description": "Gearman Worker / Dispatcher Implementation",
5-
"keywords": ["gearman", "php", "worker", "dispatcher"],
6-
"authors": [{
7-
"name": "Dominik Mank",
8-
"email": "[email protected]",
9-
"role": "developer"
10-
}],
11-
"require" : {
12-
"php" : ">=5.3.9",
13-
"psr/log": "1.*@stable",
14-
"symfony/event-dispatcher": "2.*@stable",
15-
"ext-gearman": "*",
16-
"ext-pcntl": "*"
17-
},
18-
"require-dev": {
19-
"phpunit/phpunit": "4.*@stable"
20-
},
21-
"minimum-stability": "stable",
22-
"autoload" : {
23-
"psr-4" : {
24-
"dmank\\gearman\\" : "src/"
2+
"name": "dmank/gearman",
3+
"license": "MIT",
4+
"type": "library",
5+
"description": "Gearman Worker / Dispatcher Implementation",
6+
"keywords": [
7+
"gearman",
8+
"php",
9+
"worker",
10+
"dispatcher"
11+
],
12+
"authors": [
13+
{
14+
"name": "Dominik Mank",
15+
"email": "[email protected]",
16+
"role": "developer"
17+
}
18+
],
19+
"require": {
20+
"php": ">=5.5",
21+
"psr/log": "1.*@stable",
22+
"symfony/event-dispatcher": "2.*@stable",
23+
"ext-gearman": "*",
24+
"ext-pcntl": "*"
25+
},
26+
"require-dev": {
27+
"phpunit/phpunit": "4.*@stable"
28+
},
29+
"minimum-stability": "stable",
30+
"autoload": {
31+
"psr-4": {
32+
"dmank\\gearman\\": "src/"
33+
}
34+
},
35+
"autoload-dev": {
36+
"psr-4": {
37+
"tests\\dmank\\gearman\\": "tests/unit/"
38+
}
2539
}
26-
},
27-
"autoload-dev" : {
28-
"psr-4" : {
29-
"tests\\dmank\\gearman\\" : "tests/unit/"
30-
}
31-
}
3240
}

0 commit comments

Comments
 (0)