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
+37-8Lines changed: 37 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,19 +13,48 @@ PHP 5.3+ and PDO extension installed
13
13
14
14
## Get Started
15
15
16
-
###Install via composer
16
+
## Install
17
17
18
-
Add KDBV to composer.json configuration file.
18
+
This library is designed to be installed via [Composer](https://getcomposer.org/doc/).
19
+
20
+
Add the dependency into your projects composer.json.
21
+
```
22
+
{
23
+
"require": {
24
+
"ganeshkandu/kdbv": "*"
25
+
}
26
+
}
19
27
```
20
-
$ composer require ganeshkandu/kdbv
28
+
29
+
Download the composer.phar
30
+
```bash
31
+
curl -sS https://getcomposer.org/installer | php
21
32
```
22
33
23
-
And update the composer
34
+
Install the library.
35
+
```bash
36
+
php composer.phar install
24
37
```
25
-
$ composer update
38
+
39
+
## or
40
+
41
+
> To add in in your dependencies
42
+
43
+
```bash
44
+
php composer.phar require ganeshkandu/kdbv
26
45
```
27
46
28
-
## create kdbv databade
47
+
## Autoloading
48
+
49
+
This library requires an autoloader, if you aren't already using one you can include [Composers autoloader](https://getcomposer.org/doc/01-basic-usage.md#autoloading).
0 commit comments