Skip to content

Commit 321f8c5

Browse files
Merge pull request #1 from IVEO-AB/master
Change name of composer package and update readme
2 parents 6ccee2a + fc6e383 commit 321f8c5

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ $client->products()->ListParametricValues([
6868
### Installation
6969

7070

71-
#### 1. Start by converting the .pfx certificate obtained from Enferno to a .pem format supported by curl.
71+
#### 1. Start by converting the .pfx certificate obtained from Storm Commerce to a .pem format supported by curl.
7272

7373
```
7474
$ openssl pkcs12 -in cert.pfx -out cert.pem -nodes
@@ -90,14 +90,14 @@ $ openssl pkcs12 -in cert.pfx -out cert.pem -nodes
9090
Run this command in the project root
9191

9292
```
93-
$ composer require iveo/storm-client
93+
$ composer require storm/storm-client
9494
```
9595

9696
#### 4. Generate application encryption key
9797
Storm saves the state of each visitor in a cookie. In this client the cookie is encrypted with a private encryption key. A script to generate the key is included in the storm-client root. This should be invoked from the storm-client root directory.
9898

9999
```
100-
$ cd vendor/iveo/storm-client
100+
$ cd vendor/storm/storm-client
101101
$ php generate-key.php
102102
```
103103

@@ -121,8 +121,8 @@ The following needs to be configured to run the Storm Client:
121121
$dirname = dirname(__FILE__);
122122
/*
123123
* application_name: The name of the application is used in various cache keys and if multiple instances are running you need different names
124-
* certification_path: The path to the certificate file obtained and converted from Enferno
125-
* certification_password: The password to the certificate obtained from Enferno
124+
* certification_path: The path to the certificate file obtained and converted from Storm Commerce
125+
* certification_password: The password to the certificate obtained from Storm Commerce
126126
* redis_path: Your address to redis server, e.g. tcp://127.0.0.1:6379
127127
* app_path: path to application encryption key
128128
* base_url: The base URL to the Storm API
@@ -155,7 +155,7 @@ Instantiate the client:
155155
$client = StormClient::self($config);
156156
$client->context(); // Boots context and saves StormContext encrypted cookie
157157
158-
$client->expose()->generateClasses(); // Generate expose, only needs to run once if Enferno updates the StormApi
158+
$client->expose()->generateClasses(); // Generate expose, only needs to run once if Storm Commerce updates the StormApi
159159
```
160160

161161

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "iveo/storm-client",
3-
"description": "Enferno storm client",
2+
"name": "storm/storm-client",
3+
"description": "Storm Commerce API client",
44
"minimum-stability": "stable",
55
"license": "",
66
"authors": [

0 commit comments

Comments
 (0)