From 385b2a41f289a9ec50191cf4d5d4f0f32b0549a9 Mon Sep 17 00:00:00 2001 From: Michael Scharl Date: Sun, 10 Jan 2016 12:57:49 +0100 Subject: [PATCH] use stable version 1.0 for "reactjs/react-php-v8js" --- README.md | 6 ------ composer.json | 7 +++---- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dc1e036..b4e03a3 100644 --- a/README.md +++ b/README.md @@ -20,12 +20,6 @@ You just need to add this to your `composer.json`'s `"require"`: "talyssonoc/react-laravel": "0.11" ``` -Also you got to set the `minimum-stability` of your `composer.json` to `dev`, adding this: - -```json - "minimum-stability": "dev" -``` - Then run: ```sh diff --git a/composer.json b/composer.json index 7aa275a..89c0a4c 100644 --- a/composer.json +++ b/composer.json @@ -5,8 +5,8 @@ "keywords": ["react", "reactjs", "laravel"], "require": { "illuminate/support": "~5.0", - "reactjs/react-php-v8js": "dev-master", - "koala-framework/composer-extra-assets": "~1.1" + "koala-framework/composer-extra-assets": "~1.1", + "reactjs/react-php-v8js": "^1.0" }, "require-dev": { "phpunit/phpunit": "~4.0.0@stable" @@ -30,6 +30,5 @@ "psr-4": { "React\\": "lib/" } - }, - "minimum-stability": "dev" + } }