|
1 | 1 | {
|
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 |
| - |
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 | + |
| 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 | + } |
25 | 39 | }
|
26 |
| - }, |
27 |
| - "autoload-dev" : { |
28 |
| - "psr-4" : { |
29 |
| - "tests\\dmank\\gearman\\" : "tests/unit/" |
30 |
| - } |
31 |
| - } |
32 | 40 | }
|
0 commit comments