Skip to content

Commit

Permalink
🎈 initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafaznv committed Jun 5, 2023
0 parents commit 5169ebb
Show file tree
Hide file tree
Showing 45 changed files with 10,058 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/.idea
/vendor
/node_modules
package-lock.json
composer.phar
composer.lock
phpunit.xml
.phpunit.result.cache
.DS_Store
Thumbs.db
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) Mostafa Zeinivand

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Nova LaraCache

## License

This software is released under [The MIT License (MIT)](LICENSE).
36 changes: 36 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "mostafaznv/nova-laracache",
"description": "LaraCache Tool for Laravel Nova",
"keywords": ["laravel", "nova", "cache", "redis", "memcache", "eloquent", "orm"],
"license": "MIT",
"require": {
"php": "^8.1",
"laravel/nova": "^4.0",
"mostafaznv/laracache": "^2.3.2",
"laravel/framework": "^10.4.1",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Mostafaznv\\NovaLaraCache\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Mostafaznv\\NovaLaraCache\\NovaLaraCacheServiceProvider"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}
13 changes: 13 additions & 0 deletions dist/css/tool.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.laracache-modal-label-value {
display: flex;
align-items: center;
}
.laracache-modal-label-value span {
margin-right: 8px;
}
.laracache-modal-label-value span:first-child {
font-weight: 600;
}
.laracache-modal-label-value span:last-child {
margin-right: 0;
}
Loading

0 comments on commit 5169ebb

Please sign in to comment.