diff options
author | Avi Goldman <avrahamymgoldman@gmail.com> | 2016-06-23 09:26:11 -0400 |
---|---|---|
committer | Avi Goldman <avrahamymgoldman@gmail.com> | 2016-06-23 09:26:11 -0400 |
commit | a638b1f5f6dfb96b632d610d7f68940ccc011055 (patch) | |
tree | 8c78653d5cb8c13ea2a6a83695745019749c99a4 | |
parent | b1687e3d55960ba1810bb84be72c6307a6c5a2f3 (diff) | |
download | php-sparkpost-a638b1f5f6dfb96b632d610d7f68940ccc011055.zip php-sparkpost-a638b1f5f6dfb96b632d610d7f68940ccc011055.tar.gz php-sparkpost-a638b1f5f6dfb96b632d610d7f68940ccc011055.tar.bz2 |
changed example-config.json to example-options.json
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | composer.json | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -3,7 +3,7 @@ .settings .buildpath test/output/ -examples/example-config.json +examples/example-options.json .idea /composer.phar test.php
\ No newline at end of file diff --git a/composer.json b/composer.json index a38b8c4..e73d007 100644 --- a/composer.json +++ b/composer.json @@ -9,8 +9,8 @@ ], "minimum-stability": "stable", "scripts": { - "post-install-cmd": "if [ ! -f 'examples/example-config.json' ]; then echo '{\n\t\"api-key\":\"Your API Key\"\n}' >> examples/example-config.json; fi", - "post-update-cmd": "if [ ! -f 'examples/example-config.json' ]; then echo '{\n\t\"api-key\":\"Your API Key\"\n}' >> examples/example-config.json; fi", + "post-install-cmd": "if [ ! -f 'examples/example-options.json' ]; then echo '{\n\t\"api-key\":\"Your API Key\"\n}' >> examples/example-options.json; fi", + "post-update-cmd": "if [ ! -f 'examples/example-options.json' ]; then echo '{\n\t\"api-key\":\"Your API Key\"\n}' >> examples/example-options.json; fi", "test": "phpunit ./test/unit/", "fix-style": "php-cs-fixer fix ." }, |