Skip to content

Commit a684904

Browse files
author
Hasan Gilak
committed
Create README.md
1 parent a442a0b commit a684904

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# NoLock
2+
get rid of this error on laravel 5.1 : file_put_contents(): Exclusive locks are not supported for this stream
3+
4+
### Installation
5+
```
6+
composer require gilak/nolock
7+
```
8+
9+
### Usage
10+
11+
replace the filesystem service provider in config/app.php
12+
find
13+
```php
14+
Illuminate\Filesystem\FilesystemServiceProvider::class,
15+
```
16+
replace it with
17+
```php
18+
NoLock\FileSystemWithNoLockServiceProvider::class,
19+
```

0 commit comments

Comments
 (0)