Updated README.md
This commit is contained in:
parent
43ddda23ef
commit
2181b495a9
1 changed files with 16 additions and 1 deletions
17
README.md
17
README.md
|
@ -26,7 +26,11 @@ A basic Options parser and command-line arguments handling a library for PHP.
|
||||||
The library can be installed using ncc:
|
The library can be installed using ncc:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
ncc install -p "nosial/libs.opts=latest@n64"
|
# n64
|
||||||
|
ncc package install -p "nosial/libs.opts=latest@n64"
|
||||||
|
|
||||||
|
# github
|
||||||
|
ncc package install -p "nosial/libs.opts=latest@github"
|
||||||
```
|
```
|
||||||
|
|
||||||
or by adding the following to your project.json file under
|
or by adding the following to your project.json file under
|
||||||
|
@ -36,6 +40,7 @@ the `build.dependencies` section:
|
||||||
{
|
{
|
||||||
"name": "net.nosial.optslib",
|
"name": "net.nosial.optslib",
|
||||||
"version": "latest",
|
"version": "latest",
|
||||||
|
"source_type": "remote",
|
||||||
"source": "nosial/libs.opts=latest@n64"
|
"source": "nosial/libs.opts=latest@n64"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -61,6 +66,16 @@ or by running the following command:
|
||||||
make release
|
make release
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
The library can be tested using PhpUnit with the `phpunit.xml` file that is already included in the repository.
|
||||||
|
This requires that you have PhpUnit installed & the library has been compiled and installed on the local system.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
phpunit
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
The usage of this library is very simple, there are
|
The usage of this library is very simple, there are
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue