Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
webage committed Jan 16, 2025
0 parents commit 65f33cb
Show file tree
Hide file tree
Showing 26 changed files with 9,427 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/.phpunit.cache
/node_modules
/public/build
/public/hot
/public/storage
/storage/*.key
/storage/pail
/vendor
.env
.env.backup
.env.production
.phpactor.json
.phpunit.result.cache
Homestead.json
Homestead.yaml
auth.json
npm-debug.log
yarn-error.log
/.fleet
/.idea
/.nova
/.vscode
/.zed
public_html
38 changes: 38 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "sm-net/laravel-rlf",
"description": "Login register forgot system",
"license": "MIT",
"version": "0.0.1",
"autoload": {
"psr-4": {
"SmNet\\LaravelRlf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SmNet\\LaravelRlf\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Smirnov Vadim",
"email": "info@s-v.pw"
}
],
"require": {
"php": "^8.2",
"livewire/livewire": "^3.4",
"livewire/volt": "^1.0"
},
"require-dev": {
"orchestra/testbench": "^9.9",
"nesbot/carbon": "^3.8"
},
"extra": {
"laravel": {
"providers": [
"SmNet\\LaravelRlf\\Providers\\LaravelRlfServiceProvider"
]
}
}
}
Loading

0 comments on commit 65f33cb

Please sign in to comment.