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
Icecat is a PHP library, that assists you in the following 2 procedures:
5
+
* Fetching data from the Icecat database using basic product information.
6
+
* Parsing this data from the Icecat response, and using them in real life applications.
7
+
8
+
### About Icecat
9
+
[Icecat](http://icecat.biz,"Icecat") is an open catalog, providing free access to thousands of product datasheets.
10
+
In extend, when taking a subscription, the amount of accessible datasheets are increased.
11
+
12
+
There is a list of [Icecat sponsor brands](http://icecat.co.uk/en/menu/partners/index.html,"Icecat sponsor brands").
13
+
14
+
15
+
Installation
16
+
============
17
+
18
+
The library can be installed using composer:
19
+
20
+
```
21
+
"progcode/icecat-api": "dev-master"
22
+
```
23
+
24
+
Usage
25
+
=====
26
+
27
+
The class library is, in it's current state easy to be used.
28
+
29
+
### Result
30
+
31
+
The [Icecat class](https://github.com/progcode/icecat-api/blob/master/src/Icecat/Api.php) is responsible for parsing the data. It includes a few basic methods, but you can easily create your
32
+
own implementation by implementing the IcecatInterface interface.
33
+
34
+
```php
35
+
// Use the class.
36
+
use Src\Icecat\Api;
37
+
38
+
$icecat = new Api(getenv('ICEACAT_USER'), getenv('ICEACAT_PASS'));
0 commit comments