Version 0.8.0

This commit is contained in:
vladar 2016-11-25 18:09:18 +07:00
parent 2cc2255b1a
commit 961e44c1fc
2 changed files with 3 additions and 3 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.7" $> php composer.phar require webonyx/graphql-php="^0.8"
``` ```
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.7" "webonyx/graphql-php": "^0.8"
} }
} }
``` ```
and run `composer install`. and run `composer install`.
If you already have composer.json file - simply run: `composer require webonyx/graphql-php="^0.7"` If you already have composer.json file - simply run: `composer require webonyx/graphql-php="^0.8"`
# 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