summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAvi Goldman <avrahamymgoldman@gmail.com>2016-06-23 09:26:11 -0400
committerAvi Goldman <avrahamymgoldman@gmail.com>2016-06-23 09:26:11 -0400
commita638b1f5f6dfb96b632d610d7f68940ccc011055 (patch)
tree8c78653d5cb8c13ea2a6a83695745019749c99a4
parentb1687e3d55960ba1810bb84be72c6307a6c5a2f3 (diff)
downloadphp-sparkpost-a638b1f5f6dfb96b632d610d7f68940ccc011055.zip
php-sparkpost-a638b1f5f6dfb96b632d610d7f68940ccc011055.tar.gz
php-sparkpost-a638b1f5f6dfb96b632d610d7f68940ccc011055.tar.bz2
changed example-config.json to example-options.json
-rw-r--r--.gitignore2
-rw-r--r--composer.json4
2 files changed, 3 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index e683c24..b3cda34 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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 ."
},