Skip to content

Commit 6921da0

Browse files
committed
[Fixes #103] Move credentails to environment variables.
1 parent ae83c92 commit 6921da0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/TestResource.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class TestResource extends \PHPUnit_Framework_TestCase
2020
public static function setUpBeforeClass()
2121
{
2222
$config = array(
23-
'ShopUrl' => 'phpclassic.myshopify.com',
24-
'ApiKey' => '81781200c08b31208031f983ab930f2a',
25-
'Password' => '5260904f8293bce93ddd4d65c535faa4',
23+
'ShopUrl' => getenv('SHOPIFY_SHOP_URL'), //Your shop URL
24+
'ApiKey' => getenv('SHOPIFY_API_KEY'), //Your Private API Key
25+
'Password' => getenv('SHOPIFY_API_PASSWORD'), //Your Private API Password
2626
);
2727

2828
self::$shopify = ShopifySDK::config($config);

0 commit comments

Comments
 (0)