chore: remove obsolete root artifacts (#748)

This commit is contained in:
Darko Gjorgjijoski
2026-08-05 18:19:35 +02:00
committed by GitHub
parent 5ef7804e60
commit 99ae7def75
10 changed files with 11 additions and 38501 deletions
-5
View File
@@ -1,5 +0,0 @@
{
"enabledPlugins": {
"frontend-design@claude-plugins-official": true
}
}
+4 -2
View File
@@ -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
View File
@@ -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
View File
File diff suppressed because it is too large Load Diff
-1
View File
@@ -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
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
-18
View File
@@ -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"
]
}
-44
View File
@@ -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
View File
@@ -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';