You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+108-4Lines changed: 108 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,15 @@ Laravel 5 wrapper for Prestashop Web Service Library
6
6
Installation
7
7
------------
8
8
9
+
Add these lines to your `composer.json` file at the end of the object:
10
+
11
+
```javascript
12
+
"minimum-stability":"dev",
13
+
"prefer-stable":"true"
14
+
```
15
+
The `"minimum-stability":"dev"` line is needed because the underlying Prestashop Web Service Library is not versioned so you must tell Composer to allow packages still in development.
16
+
Adding `"prefer-stable":"true"` will tell Composer to provide stable packages if found over dev ones, this is not compulsory but suggested if you don'thave specific needs for your dependencies.
17
+
9
18
Require this package with composer using the following command:
The default behaviour for the `fillSchema` method is to remove the nodes that are not filled. If you want to preserve those nodes (typical update situation) put the third parameter as `false`
When preserving unfilled nodes from removal you may specify some nodes to be removed as the fourth argument (this may be useful when updating a resource with some readonly nodes that would trigger error 400):
0 commit comments