This commit is contained in:
vladar 2017-01-19 19:28:41 +07:00
parent e2875953e1
commit fa9611738d
3 changed files with 4 additions and 4 deletions

View File

@ -80,7 +80,7 @@ Check out single-file [hello world](https://gist.github.com/leocavalcante/9e61ca
## Installing graphql-php ## Installing graphql-php
``` ```
$> curl -sS https://getcomposer.org/installer | php $> curl -sS https://getcomposer.org/installer | php
$> php composer.phar require webonyx/graphql-php="^0.8" $> php composer.phar require webonyx/graphql-php="^0.9"
``` ```
If you are upgrading, see [upgrade instructions](UPGRADE.md) If you are upgrading, see [upgrade instructions](UPGRADE.md)

View File

@ -9,13 +9,13 @@ add `composer.json` file to your project root folder with following contents:
``` ```
{ {
"require": { "require": {
"webonyx/graphql-php": "^0.8" "webonyx/graphql-php": "^0.9"
} }
} }
``` ```
and run `composer install`. and run `composer install`.
If you already have composer.json file - simply run: `composer require webonyx/graphql-php="^0.8"` If you already have composer.json file - simply run: `composer require webonyx/graphql-php="^0.9"`
# Upgrading # Upgrading
We try to keep library releases backwards compatible. But when breaking changes are inevitable We try to keep library releases backwards compatible. But when breaking changes are inevitable

View File

@ -41,7 +41,7 @@ existing PHP frameworks, add support for Relay, etc.
## Current Status ## Current Status
First version of this library (v0.1) was released on August 10th 2015. First version of this library (v0.1) was released on August 10th 2015.
Current version (v0.8) supports all features described by GraphQL specification Current version (v0.9) supports all features described by GraphQL specification
(including April 2016 add-ons) as well as some experimental features like (including April 2016 add-ons) as well as some experimental features like
Schema Language parser. Schema Language parser.