Skip to content

Commit 7d8f232

Browse files
committed
Preparation for the upcoming Laravel 5
1 parent cb3c50a commit 7d8f232

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To get the latest version simply require it in your Laravel project `composer.js
2323

2424
composer require "stolz/laravel-schema-spy:dev-master" --dev
2525

26-
Once the package is installed you need to register the service provider with the application. Open up `app/config/app.php` and find the `providers` key.
26+
Once the package is installed you need to register the service provider with the application. Open up `config/app.php` and find the `providers` key.
2727

2828
'providers' => array(
2929
...
@@ -38,9 +38,9 @@ If no connection is provided Laravel's default one will be used. After successfu
3838

3939
## Configuration
4040

41-
To configure the package use the following command to copy the configuration file to `app/config/packages/stolz/laravel-schema-spy/config.php`.
41+
To configure the package use the following command to copy the configuration file to `config/packages/stolz/laravel-schema-spy/config.php`.
4242

43-
php artisan config:publish stolz/laravel-schema-spy
43+
php artisan publish:config stolz/laravel-schema-spy
4444

4545
All available settings are included inside `config.php` and with the provided comments they should be self-explanatory.
4646

composer.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"require": {
1313
"php": ">=5.4.0",
14-
"illuminate/support": "~4.0"
14+
"illuminate/support": "~5.0"
1515
},
1616
"require-dev": {
1717
"squizlabs/php_codesniffer": "2.*"
@@ -27,5 +27,3 @@
2727
"minimum-stability": "dev",
2828
"license": "MIT"
2929
}
30-
31-

src/Stolz/SchemaSpy/ServiceProvider.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,4 @@ public function register()
3535
// Add artisan command
3636
$this->commands('stolz.schemaspy.command.spy');
3737
}
38-
39-
/**
40-
* Get the services provided by the provider.
41-
*
42-
* @return array
43-
*/
44-
public function provides()
45-
{
46-
return array();
47-
}
4838
}

0 commit comments

Comments
 (0)