Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-to committed May 12, 2022
0 parents commit f673b64
Show file tree
Hide file tree
Showing 201 changed files with 27,678 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
vendor
composer.lock
node_modules
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
## MoonShine
42 changes: 42 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"name": "lee-to/moonshine",
"description": "Laravel dashboard",
"keywords": ["laravel", "admin", "dashboard", "moonshine"],
"type": "library",
"homepage": "https://github.com/lee-to/moonshine",
"license": "MIT",
"authors": [
{
"name": "Danil Shutsky",
"email": "[email protected]",
"homepage": "https://github.com/lee-to"
}
],
"require": {
"php": "^8.0|^8.1",
"ext-curl": "*",
"ext-json": "*",
"phpoffice/phpspreadsheet": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35 || ^5.7",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Leeto\\MoonShine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Leeto\\MoonShine\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Leeto\\MoonShine\\Providers\\MoonShineServiceProvider"
]
}
}
}
4 changes: 4 additions & 0 deletions mix-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"/src/assets/js/compiled/app.js": "/src/assets/js/compiled/app.js",
"/src/assets/css/compiled/app.css": "/src/assets/css/compiled/app.css"
}
Loading

0 comments on commit f673b64

Please sign in to comment.