Skip to content

Commit 74af9e3

Browse files
committed
Changing ownership to laravel-frontend-presets and updating README to reflect correct usage
1 parent a635d51 commit 74af9e3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Preset for Bootstrap 4 scaffolding on new Laravel 5.5.x project.
66

77
## Usage
88
1. Fresh install Laravel 5.5.x and `cd` to your app.
9-
2. Install this preset via `composer require travoltron/bootstrap-4`. Laravel 5.5.x will automatically discover this package. No need to register the service provider.
9+
2. Install this preset via `composer require laravel-frontend-presets/bootstrap-4`. Laravel 5.5.x will automatically discover this package. No need to register the service provider.
1010
3. Use `php artisan preset bootstrap4` for basic Bootstrap 4 preset. **OR** Use `php artisan preset bootstrap4-auth` for basic preset, Auth route entry and Bootstrap 4 Auth views in one go. (**NOTE**: If you run this command several times, be sure to clean up the duplicate Auth entries in `routes/web.php`)
1111
4. `npm install`
1212
5. `npm run dev`

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "travoltron/bootstrap-4",
2+
"name": "laravel-frontend-presets/bootstrap-4",
33
"description": "Laravel 5.5.x Front-end preset for Bootstrap 4",
44
"keywords": ["laravel", "preset", "bootstrap 4", "scaffolding"],
55
"license": "MIT",
@@ -8,13 +8,13 @@
88
},
99
"autoload": {
1010
"psr-4": {
11-
"Travoltron\\Bootstrap4Preset\\": "src/"
11+
"LaravelFrontendPresets\\Bootstrap4Preset\\": "src/"
1212
}
1313
},
1414
"extra": {
1515
"laravel": {
1616
"providers": [
17-
"Travoltron\\Bootstrap4Preset\\Bootstrap4PresetServiceProvider"
17+
"LaravelFrontendPresets\\Bootstrap4Preset\\Bootstrap4PresetServiceProvider"
1818
]
1919
}
2020
}

src/Bootstrap4Preset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Travoltron\Bootstrap4Preset;
2+
namespace LaravelFrontendPresets\Bootstrap4Preset;
33

44
use Artisan;
55
use Illuminate\Support\Arr;

src/Bootstrap4PresetServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Travoltron\Bootstrap4Preset;
2+
namespace LaravelFrontendPresets\Bootstrap4Preset;
33

44
use Illuminate\Support\ServiceProvider;
55
use Illuminate\Foundation\Console\PresetCommand;

0 commit comments

Comments
 (0)