Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
Implement vite.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Irsyad A. Panjaitan committed Aug 14, 2022
1 parent 5df6060 commit d0a39b9
Show file tree
Hide file tree
Showing 75 changed files with 1,242 additions and 542 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# These are supported funding model platforms

github: irsyadadl
saweria: https://saweria.co/irsyadadl
23 changes: 17 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "irsyadadl/fence",
"description": "Fence is a Laravel views for Laravel Fortify",
"description": " Fence is a package for authentication views using Laravel fortify package.",
"type": "package",
"license": "MIT",
"keywords": [
"laravel",
"fence"
"fence",
"fortify view"
],
"authors": [
{
Expand All @@ -14,9 +15,14 @@
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/support": "^8.0",
"laravel/fortify": "^1.7"
"php": "^8.0.2",
"illuminate/console": "^9.21",
"illuminate/filesystem": "^9.21",
"illuminate/support": "^9.21",
"illuminate/validation": "^9.21"
},
"conflict": {
"laravel/framework": "<9.19.0"
},
"autoload": {
"psr-4": {
Expand All @@ -43,5 +49,10 @@
},
"require-dev": {
"orchestra/testbench": "^6.0"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}
2 changes: 1 addition & 1 deletion config/fence.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

return [

];
32 changes: 27 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,41 @@
## Introduction
Fence is a package for authentication views using Laravel fortify package! It using tailwind css!

> Hey, Make you sure you do not include `fence` into __your existing app__. Please add `fence` in your new laravel project.
> Hey, Make you sure you do not include `fence` into __your existing app__. Please add `fence` in your new laravel project.
### Install
```bash
$ laravel new app
```
And then you can install by composer like so:
Next, you will need to install the [fortify package](https://github.com/laravel/fortify), it's required.

```bash
composer require laravel/fortify
```

Next, publish Fortify's resources using the `vendor:publish` command:

```bash
php artisan vendor:publish --provider="Laravel\Fortify\FortifyServiceProvider"
```

Next, you will need to register `FortifyServiceProvider` in the `config/app.php`. Open that file, and add this one line of code.

```php
'providers' => [
// ...
App\Providers\FortifyServiceProvider::class,
],
```

And now you can required this package like so:

```bash
$ composer require irsyadadl/fence
composer require irsyadadl/fence
```
Now, you can install fence by running this command:
```bash
$ php artisan fence:install
php artisan fence:install
```
Now you make your database connection. And run `php artisan migrate`.

Done.
Done.
138 changes: 0 additions & 138 deletions src/Commands/InstallCommand.php

This file was deleted.

Loading

0 comments on commit d0a39b9

Please sign in to comment.