mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-07 23:54:12 +00:00
chore: remove obsolete root artifacts (#748)
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"enabledPlugins": {
|
||||
"frontend-design@claude-plugins-official": true
|
||||
}
|
||||
}
|
||||
+4
-2
@@ -1,4 +1,5 @@
|
||||
.idea/
|
||||
.claude/
|
||||
.git/
|
||||
|
||||
.github/
|
||||
@@ -40,9 +41,10 @@ Dockerfile
|
||||
LICENSE
|
||||
Makefile
|
||||
SECURITY.md
|
||||
_ide_helper.php
|
||||
.phpstorm.meta.php
|
||||
_ide_helper*.php
|
||||
crowdin.yml
|
||||
invoiceshelf.code-workspace
|
||||
*.code-workspace
|
||||
package-lock.json
|
||||
phpunit.xml
|
||||
readme.md
|
||||
|
||||
+7
-1
@@ -35,4 +35,10 @@ yarn.lock
|
||||
/GEMINI.md
|
||||
/.github/copilot-instructions.md
|
||||
/.cursor/
|
||||
/.claude/settings.local.json
|
||||
/.claude/
|
||||
|
||||
# Generated IDE metadata belongs to each developer's local environment.
|
||||
/.phpstorm.meta.php
|
||||
/_ide_helper.php
|
||||
/_ide_helper_models.php
|
||||
/*.code-workspace
|
||||
|
||||
-5909
File diff suppressed because it is too large
Load Diff
@@ -39,7 +39,6 @@ dist-gen: clean composer npm-build
|
||||
@cp -r LICENSE InvoiceShelf
|
||||
@cp -r readme.md InvoiceShelf
|
||||
@cp -r SECURITY.md InvoiceShelf
|
||||
@cp -r server.php InvoiceShelf
|
||||
@touch InvoiceShelf/storage/logs/laravel.log
|
||||
|
||||
dist-clean: dist-gen
|
||||
|
||||
-30873
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
-18
@@ -1,18 +0,0 @@
|
||||
{
|
||||
"agents": [
|
||||
"cursor"
|
||||
],
|
||||
"guidelines": true,
|
||||
"herd_mcp": false,
|
||||
"mcp": true,
|
||||
"nightwatch_mcp": false,
|
||||
"packages": [
|
||||
"spatie/laravel-medialibrary"
|
||||
],
|
||||
"sail": false,
|
||||
"skills": [
|
||||
"pest-testing",
|
||||
"tailwindcss-development",
|
||||
"medialibrary-development"
|
||||
]
|
||||
}
|
||||
@@ -1,44 +0,0 @@
|
||||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": "."
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"search.exclude": {
|
||||
"**/public": true
|
||||
},
|
||||
"editor.formatOnSave": true,
|
||||
"vetur.validation.template": false,
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.eslint": true
|
||||
},
|
||||
"editor.formatOnPaste": true,
|
||||
"editor.formatOnType": true,
|
||||
"editor.codeActionsOnSaveTimeout": 2000,
|
||||
"prettier.semi": false,
|
||||
"prettier.singleQuote": true,
|
||||
"files.associations": {},
|
||||
"eslint.codeAction.disableRuleComment": {},
|
||||
"eslint.codeAction.showDocumentation": {
|
||||
"enable": true
|
||||
},
|
||||
"eslint.validate": [
|
||||
"javascript",
|
||||
"javascriptreact",
|
||||
"vue"
|
||||
],
|
||||
"[php]": {
|
||||
"editor.defaultFormatter": "junstyle.php-cs-fixer"
|
||||
},
|
||||
"debug.allowBreakpointsEverywhere": true,
|
||||
"files.autoGuessEncoding": true,
|
||||
"files.exclude": {
|
||||
"**/.vscode": true,
|
||||
"compile_commands.json": true,
|
||||
"*.hrccproj": true,
|
||||
"*.sln": true,
|
||||
"*.suo": true
|
||||
},
|
||||
}
|
||||
}
|
||||
-19
@@ -1,19 +0,0 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Laravel - A PHP Framework For Web Artisans
|
||||
*
|
||||
* @author Taylor Otwell <taylor@laravel.com>
|
||||
*/
|
||||
$uri = urldecode(
|
||||
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
|
||||
);
|
||||
|
||||
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
|
||||
// built-in PHP web server. This provides a convenient way to test a Laravel
|
||||
// application without having installed a "real" web server software here.
|
||||
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
require_once __DIR__.'/public/index.php';
|
||||
Reference in New Issue
Block a user