|
1 | 1 | {
|
2 |
| - "name": "sparkpost/php-sparkpost", |
3 |
| - "description": "Client library for interfacing with the SparkPost API.", |
4 |
| - "license": "Apache 2.0", |
5 |
| - "authors": [ |
6 |
| - { |
7 |
| - "name": "SparkPost" |
8 |
| - } |
9 |
| - ], |
10 |
| - "minimum-stability": "stable", |
11 |
| - "scripts": { |
12 |
| - "post-install-cmd": "if [ ! -f 'examples/example-config.json' ]; then echo '{\n\t\"api-key\":\"Your API Key\"\n}' >> examples/example-config.json; fi", |
13 |
| - "post-update-cmd": "if [ ! -f 'examples/example-config.json' ]; then echo '{\n\t\"api-key\":\"Your API Key\"\n}' >> examples/example-config.json; fi", |
14 |
| - "test": "phpunit ./test/unit/" |
15 |
| - }, |
16 |
| - "require": { |
17 |
| - "php": ">=5.5.0", |
18 |
| - "egeloen/http-adapter": "*" |
19 |
| - }, |
20 |
| - "require-dev": { |
21 |
| - "phpunit/phpunit": "4.3.*", |
22 |
| - "guzzlehttp/guzzle": "6.*", |
23 |
| - "mockery/mockery": "^0.9.4", |
24 |
| - "satooshi/php-coveralls": "dev-master" |
25 |
| - }, |
26 |
| - "autoload": { |
27 |
| - "psr-4": { |
28 |
| - "SparkPost\\": "lib/SparkPost/", |
29 |
| - "SparkPost\\SendGridCompatibility\\": "lib/SendGridCompatibility/", |
30 |
| - "SparkPost\\Test\\TestUtils\\": "test/unit/TestUtils/" |
31 |
| - } |
| 2 | + "name": "sparkpost/php-sparkpost", |
| 3 | + "description": "Client library for interfacing with the SparkPost API.", |
| 4 | + "license": "Apache 2.0", |
| 5 | + "authors": [ |
| 6 | + { |
| 7 | + "name": "SparkPost" |
32 | 8 | }
|
| 9 | + ], |
| 10 | + "minimum-stability": "stable", |
| 11 | + "scripts": { |
| 12 | + "post-install-cmd": "if [ ! -f 'examples/example-config.json' ]; then echo '{\n\t\"api-key\":\"Your API Key\"\n}' >> examples/example-config.json; fi", |
| 13 | + "post-update-cmd": "if [ ! -f 'examples/example-config.json' ]; then echo '{\n\t\"api-key\":\"Your API Key\"\n}' >> examples/example-config.json; fi", |
| 14 | + "test": "phpunit ./test/unit/", |
| 15 | + "fix-style": "php-cs-fixer fix ." |
| 16 | + }, |
| 17 | + "require": { |
| 18 | + "php": ">=5.5.0", |
| 19 | + "egeloen/http-adapter": "*" |
| 20 | + }, |
| 21 | + "require-dev": { |
| 22 | + "phpunit/phpunit": "4.3.*", |
| 23 | + "guzzlehttp/guzzle": "6.*", |
| 24 | + "mockery/mockery": "^0.9.4", |
| 25 | + "satooshi/php-coveralls": "dev-master", |
| 26 | + "fabpot/php-cs-fixer": "^1.11" |
| 27 | + }, |
| 28 | + "autoload": { |
| 29 | + "psr-4": { |
| 30 | + "SparkPost\\": "lib/SparkPost/", |
| 31 | + "SparkPost\\SendGridCompatibility\\": "lib/SendGridCompatibility/", |
| 32 | + "SparkPost\\Test\\TestUtils\\": "test/unit/TestUtils/" |
| 33 | + } |
| 34 | + } |
33 | 35 | }
|
0 commit comments