-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.md~
44 lines (29 loc) · 819 Bytes
/
README.md~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
HttpFull
========
Extension conversion of 'Httpful' to yii2 extension
Installation
------------
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
Since it is not published on packages.org needs to be installed manually using composer
add to your composer.json
"repositories":[
{
"type": "git",
"url": "https://path.to/your/repo"
}
]
since the file is local the 'url' should be "url" : "file:///path_to_your_file"
Either run
```
php composer.phar require --prefer-dist segpacto/yii2-httpfull "*"
```
or add
```
"segpacto/yii2-httpfull": "*"
```
to the require section of your `composer.json` file.
Usage
-----
Once the extension is installed, simply use it in your code by :
```php
<?= \HttpFull\AutoloadExample::widget(); ?>```