Skip to content

Commit ce36e0d

Browse files
committed
Fix relative path error
1 parent 996d995 commit ce36e0d

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ With `react-laravel` you'll be able to use [ReactJS](https://facebook.github.io/
99
You just need to add this to your `composer.json`'s `"require"`:
1010

1111
```json
12-
"talyssonoc/react-laravel": "0.4"`
12+
"talyssonoc/react-laravel": "0.5"
1313
```
1414

1515
Also you got to set the `minimum-stability` of your `composer.json` to `dev`, adding this:
File renamed without changes.

lib/React.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php namespace React;
22

3-
require __DIR__ . '/../vendor/autoload.php';
3+
require '../vendor/autoload.php';
44

55
class React {
66
private $react;

0 commit comments

Comments
 (0)