Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Commit

Permalink
change namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
pktharindu committed Jun 3, 2020
1 parent 1819af2 commit 3d2d1a6
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
cd ../app
composer require livewire/livewire
composer config repositories.local '{"type": "path", "url": "../ttall"}' --file composer.json
composer require laravel-frontend-presets/ttall @dev
composer require pktharindu/ttall @dev
- name: Install preset
run: |
cd ../app
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ If you like this package, show some love by starring the repo. ⭐❤
To install this preset on your laravel application, run:

``` bash
composer require laravel-frontend-presets/ttall --dev
composer require pktharindu/ttall --dev
```

### For Basic Presets (without authentication)
Expand Down Expand Up @@ -146,7 +146,7 @@ If you require any support please contact me on [Twitter](https://twitter.com/Ca
- [P. K. Tharindu](https://github.com/pktharindu)
- [All Contributors](../../contributors)

This Package is inspired by [laravel-frontend-presets/tall](https://github.com/laravel-frontend-presets/tall) and [YannickYayo/laravel-preset-ttall](https://github.com/YannickYayo/laravel-preset-ttall). I wanted to have a combination of both. Thanks to all authors of these packages.
This Package is inspired by [pktharindu/tall](https://github.com/pktharindu/tall) and [YannickYayo/laravel-preset-ttall](https://github.com/YannickYayo/laravel-preset-ttall). I wanted to have a combination of both. Thanks to all authors of these packages.

## License

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "laravel-frontend-presets/ttall",
"name": "pktharindu/ttall",
"description": "TTALL Preset For Laravel 7 and Up.",
"keywords": [
"tailwind",
Expand Down Expand Up @@ -35,13 +35,13 @@
},
"autoload": {
"psr-4": {
"LaravelFrontendPresets\\TtallPreset\\": "src/"
"Pktharindu\\TtallPreset\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelFrontendPresets\\TtallPreset\\TtallPresetServiceProvider"
"Pktharindu\\TtallPreset\\TtallPresetServiceProvider"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/HandlesAuthScaffolding.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace LaravelFrontendPresets\TtallPreset;
namespace Pktharindu\TtallPreset;

use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\Str;
Expand Down
2 changes: 1 addition & 1 deletion src/HandlesCodeHelperScaffolding.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace LaravelFrontendPresets\TtallPreset;
namespace Pktharindu\TtallPreset;

trait HandlesCodeHelperScaffolding
{
Expand Down
2 changes: 1 addition & 1 deletion src/HandlesGeneralScaffolding.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace LaravelFrontendPresets\TtallPreset;
namespace Pktharindu\TtallPreset;

use Illuminate\Filesystem\Filesystem;

Expand Down
2 changes: 1 addition & 1 deletion src/TtallPreset.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace LaravelFrontendPresets\TtallPreset;
namespace Pktharindu\TtallPreset;

use Illuminate\Support\Arr;
use Laravel\Ui\Presets\Preset;
Expand Down
8 changes: 4 additions & 4 deletions src/TtallPresetServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace LaravelFrontendPresets\TtallPreset;
namespace Pktharindu\TtallPreset;

use Illuminate\Pagination\Paginator;
use Illuminate\Support\ServiceProvider;
Expand Down Expand Up @@ -49,13 +49,13 @@ public function boot()

if ($command->confirm('Would you like to show some love by starring the repo?')) {
if (PHP_OS_FAMILY == 'Darwin') {
exec('open https://github.com/laravel-frontend-presets/ttall');
exec('open https://github.com/pktharindu/ttall');
}
if (PHP_OS_FAMILY == 'Windows') {
exec('start https://github.com/laravel-frontend-presets/ttall');
exec('start https://github.com/pktharindu/ttall');
}
if (PHP_OS_FAMILY == 'Linux') {
exec('xdg-open https://github.com/laravel-frontend-presets/ttall');
exec('xdg-open https://github.com/pktharindu/ttall');
}

$command->line('Thanks! Means the world to me! 🥰');
Expand Down
7 changes: 0 additions & 7 deletions src/stubs/default/resources/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,6 @@
*/
@tailwind base;

/**
* Remove the default box-shadow for invalid elements to prevent
* inputs in Livewire components showing with a
* red border by default in Firefox.
*
* See: https://github.com/laravel-frontend-presets/tall/issues/7
*/
input:invalid, textarea:invalid, select:invalid {
box-shadow: none;
}
Expand Down

0 comments on commit 3d2d1a6

Please sign in to comment.