Skip to content

Commit 7fa9c2a

Browse files
committed
Minor project environment improvements. Travis CI configured to run unit tests for HHVM.
1 parent ba11a34 commit 7fa9c2a

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ language: php
33
php:
44
- '5.6'
55
- '7.0'
6+
- 'hhvm'
67

78
before_script:
89
- composer self-update

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@ PHP JSON Pointer
22
================
33
[![Build Status](https://travis-ci.org/remorhaz/php-json-pointer.svg?branch=master)](https://travis-ci.org/remorhaz/php-json-pointer)
44

5-
This library allows usage of RFC-6901-compliant JSON pointers with PHP variables.
5+
This library allows usage of [RFC6901](https://tools.ietf.org/html/rfc6901)-compliant JSON pointers with PHP variables.
66

77
#License
88
PHP JSON Pointer is licensed under MIT license.
99

10+
#Installation
11+
You will need [composer](https://getcomposer.org) to perform install.
12+
```
13+
composer require remorhaz/php-json-pointer
14+
```
15+
1016
#Documentation
1117
To get ready to access data with JSON Pointer links you need just 3 simple steps:
1218

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"authors": [
88
{
99
"name": "Edward Surov",
10-
"email": "zoohie@gmail.com"
10+
"email": "zoohie@gmail.com",
11+
"role": "Developer"
1112
}
1213
],
1314
"require": {

0 commit comments

Comments
 (0)