Skip to content
This repository was archived by the owner on Jun 12, 2024. It is now read-only.

Commit c80621b

Browse files
author
felice ostuni
committed
fix
1 parent d142628 commit c80621b

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,12 @@ Nothing to "generate", just some classes to let you develop and maintain CRUD ba
1717

1818
![rapyd laravel](https://raw.github.com/zofe/rapyd-laravel/master/public/assets/rapyd-laravel.png)
1919

20-
## A couple of minutes of your time
2120

22-
I came from an era where there was mutual appreciation among programmers, I would like to use two minutes of your time to recognize my usefulness and my experience on linkedin, if you use this library and benefit from it.. please link-me and write a short review.
23-
Thanks to Mihai Berende for having done it already
24-
[me@linkedin](https://www.linkedin.com/in/feliceostuni/)
2521

2622
## Install in Laravel 5.6, .. 5.2, 5.1, 5.0, 4.*
2723

2824

29-
require the packege in your Laravel >= 5.6
25+
require the package in your Laravel >= 5.6
3026
`$ composer require zofe/rapyd`
3127

3228
then publish assets:
@@ -39,12 +35,17 @@ you can also require a specific version:
3935
`zofe/rapyd:"2.0.*"` for Laravel 5.0
4036

4137

42-
4338
note: for Laravel <=5.4 you need to add the provider in your config/app.php:
4439

4540
`Zofe\Rapyd\RapydServiceProvider::class`
4641

4742

43+
## A couple of minutes of your time before you start
44+
45+
I came from an era where there was mutual appreciation among programmers, if you use this library and benefit from it join-me on Linkedin and write a short review.
46+
Thanks to Mihai Berende for having done it already
47+
[me@linkedin](https://www.linkedin.com/in/feliceostuni/)
48+
4849
## DataSet
4950

5051
DataSet is a simple presenter, it build a super-collection, a pagination and orderby links.

composer.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=5.6.0",
13+
"php": ">=7.1",
1414
"illuminate/support": "~5.6",
1515
"laravelcollective/html": "~5.6",
1616
"intervention/image": "2.4.2",
@@ -33,5 +33,11 @@
3333
"Zofe\\Rapyd\\RapydServiceProvider"
3434
]
3535
}
36+
},
37+
"require-dev": {
38+
"laravel/framework": "5.6.*",
39+
"orchestra/testbench": "3.6.*",
40+
"phpunit/phpunit": "7.*",
41+
"php-coveralls/php-coveralls": "^1.0"
3642
}
3743
}

src/RapydServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ public function boot()
2525

2626

2727
$this->publishes([
28-
__DIR__.'/routes.php' => base_path('/routes/rapyd.php'),
28+
__DIR__.'/routes.php' => base_path().'/routes/rapyd.php',
2929
], 'routes');
3030

3131

32-
$this->loadRoutesFrom(base_path('/routes/rapyd.php'));
32+
$this->loadRoutesFrom(base_path().'/routes/rapyd.php');
3333

3434

3535
if (! $this->app->routesAreCached()) {

0 commit comments

Comments
 (0)