Skip to content

Commit 9daa84f

Browse files
committed
updated base format for vscode
1 parent 2beeedd commit 9daa84f

14 files changed

+642
-757
lines changed

.editorconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ trim_trailing_whitespace = false
1414
[*.{yml,yaml}]
1515
indent_size = 2
1616

17-
[docker-compose.yml]
18-
indent_size = 4
17+
[*.{vue,html}]
18+
indent_size = 2

composer.json

+67-64
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,69 @@
11
{
2-
"name": "laravel/laravel",
3-
"type": "project",
4-
"description": "The Laravel Framework.",
5-
"keywords": ["framework", "laravel"],
6-
"license": "MIT",
7-
"require": {
8-
"php": "^8.0.2",
9-
"ankitpokhrel/tus-php": "^2.2",
10-
"creativeorange/gravatar": "^1.0",
11-
"guzzlehttp/guzzle": "^7.2",
12-
"laravel/cashier": "^13.13",
13-
"laravel/framework": "^9.19",
14-
"laravel/sanctum": "^2.15",
15-
"laravel/tinker": "^2.7",
16-
"spatie/laravel-sluggable": "^3.4"
17-
},
18-
"require-dev": {
19-
"fakerphp/faker": "^1.9.1",
20-
"laravel/pint": "^1.0",
21-
"laravel/sail": "^1.0.1",
22-
"mockery/mockery": "^1.4.4",
23-
"nunomaduro/collision": "^6.1",
24-
"phpunit/phpunit": "^9.5.10",
25-
"spatie/laravel-ignition": "^1.0"
26-
},
27-
"autoload": {
28-
"psr-4": {
29-
"App\\": "app/",
30-
"Database\\Factories\\": "database/factories/",
31-
"Database\\Seeders\\": "database/seeders/"
32-
}
33-
},
34-
"autoload-dev": {
35-
"psr-4": {
36-
"Tests\\": "tests/"
37-
}
38-
},
39-
"scripts": {
40-
"post-autoload-dump": [
41-
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
42-
"@php artisan package:discover --ansi"
43-
],
44-
"post-update-cmd": [
45-
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
46-
],
47-
"post-root-package-install": [
48-
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
49-
],
50-
"post-create-project-cmd": [
51-
"@php artisan key:generate --ansi"
52-
]
53-
},
54-
"extra": {
55-
"laravel": {
56-
"dont-discover": []
57-
}
58-
},
59-
"config": {
60-
"optimize-autoloader": true,
61-
"preferred-install": "dist",
62-
"sort-packages": true
63-
},
64-
"minimum-stability": "dev",
65-
"prefer-stable": true
2+
"name": "laravel/laravel",
3+
"type": "project",
4+
"description": "The Laravel Framework.",
5+
"keywords": [
6+
"framework",
7+
"laravel"
8+
],
9+
"license": "MIT",
10+
"require": {
11+
"php": "^8.0.2",
12+
"ankitpokhrel/tus-php": "^2.2",
13+
"creativeorange/gravatar": "^1.0",
14+
"guzzlehttp/guzzle": "^7.2",
15+
"laravel/cashier": "^13.13",
16+
"laravel/framework": "^9.19",
17+
"laravel/sanctum": "^2.15",
18+
"laravel/tinker": "^2.7",
19+
"spatie/laravel-sluggable": "^3.4"
20+
},
21+
"require-dev": {
22+
"fakerphp/faker": "^1.9.1",
23+
"laravel/pint": "^1.0",
24+
"laravel/sail": "^1.0.1",
25+
"mockery/mockery": "^1.4.4",
26+
"nunomaduro/collision": "^6.1",
27+
"phpunit/phpunit": "^9.5.10",
28+
"spatie/laravel-ignition": "^1.0"
29+
},
30+
"autoload": {
31+
"psr-4": {
32+
"App\\": "app/",
33+
"Database\\Factories\\": "database/factories/",
34+
"Database\\Seeders\\": "database/seeders/"
35+
}
36+
},
37+
"autoload-dev": {
38+
"psr-4": {
39+
"Tests\\": "tests/"
40+
}
41+
},
42+
"scripts": {
43+
"post-autoload-dump": [
44+
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
45+
"@php artisan package:discover --ansi"
46+
],
47+
"post-update-cmd": [
48+
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
49+
],
50+
"post-root-package-install": [
51+
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
52+
],
53+
"post-create-project-cmd": [
54+
"@php artisan key:generate --ansi"
55+
]
56+
},
57+
"extra": {
58+
"laravel": {
59+
"dont-discover": []
60+
}
61+
},
62+
"config": {
63+
"optimize-autoloader": true,
64+
"preferred-install": "dist",
65+
"sort-packages": true
66+
},
67+
"minimum-stability": "dev",
68+
"prefer-stable": true
6669
}

index.html

+22-16
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
<!DOCTYPE html>
22
<html>
3-
<head>
4-
<title><%= productName %></title>
53

6-
<meta charset="utf-8">
7-
<meta name="description" content="<%= productDescription %>">
8-
<meta name="format-detection" content="telephone=no">
9-
<meta name="msapplication-tap-highlight" content="no">
10-
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>">
4+
<head>
5+
<title>
6+
<%= productName %>
7+
</title>
8+
9+
<meta charset="utf-8">
10+
<meta name="description" content="<%= productDescription %>">
11+
<meta name="format-detection" content="telephone=no">
12+
<meta name="msapplication-tap-highlight" content="no">
13+
<meta name="viewport"
14+
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>">
15+
16+
<link rel="icon" type="image/png" sizes="128x128" href="icons/favicon-128x128.png">
17+
<link rel="icon" type="image/png" sizes="96x96" href="icons/favicon-96x96.png">
18+
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
19+
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
20+
<link rel="icon" type="image/ico" href="favicon.ico">
21+
</head>
22+
23+
<body>
24+
<!-- quasar:entry-point -->
25+
</body>
1126

12-
<link rel="icon" type="image/png" sizes="128x128" href="icons/favicon-128x128.png">
13-
<link rel="icon" type="image/png" sizes="96x96" href="icons/favicon-96x96.png">
14-
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
15-
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
16-
<link rel="icon" type="image/ico" href="favicon.ico">
17-
</head>
18-
<body>
19-
<!-- quasar:entry-point -->
20-
</body>
2127
</html>

jsconfig.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"compilerOptions": {
3-
"baseUrl": ".",
4-
"paths": {
5-
"src/*": ["src/*"],
6-
"app/*": ["*"],
7-
"components/*": ["src/components/*"],
8-
"layouts/*": ["src/layouts/*"],
9-
"pages/*": ["src/pages/*"],
10-
"assets/*": ["src/assets/*"],
11-
"boot/*": ["src/boot/*"],
12-
"stores/*": ["src/stores/*"],
13-
"vue$": ["node_modules/vue/dist/vue.runtime.esm-bundler.js"]
14-
}
15-
},
16-
"exclude": ["dist", ".quasar", "node_modules"]
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"paths": {
5+
"src/*": ["src/*"],
6+
"app/*": ["*"],
7+
"components/*": ["src/components/*"],
8+
"layouts/*": ["src/layouts/*"],
9+
"pages/*": ["src/pages/*"],
10+
"assets/*": ["src/assets/*"],
11+
"boot/*": ["src/boot/*"],
12+
"stores/*": ["src/stores/*"],
13+
"vue$": ["node_modules/vue/dist/vue.runtime.esm-bundler.js"]
14+
}
15+
},
16+
"exclude": ["dist", ".quasar", "node_modules"]
1717
}

package.json

+77-77
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,81 @@
11
{
2-
"name": "qaravel",
3-
"version": "2.0.0",
4-
"description": "Qaravel is a Combination of Laravel and Quasar",
5-
"productName": "Qaravel",
6-
"author": "DepokSarkar <[email protected]>",
7-
"private": true,
8-
"config": {
9-
"app": {
10-
"path": "frontend"
2+
"name": "qaravel",
3+
"version": "2.0.0",
4+
"description": "Qaravel is a Combination of Laravel and Quasar",
5+
"productName": "Qaravel",
6+
"author": "DepokSarkar <[email protected]>",
7+
"private": true,
8+
"config": {
9+
"app": {
10+
"path": "frontend"
11+
},
12+
"ssh": {
13+
"user": "example.com",
14+
"server": "ssh.hosting-provider.com",
15+
"folders": {
16+
"live": "~/app",
17+
"alpha": "~/alpha"
18+
}
19+
}
1120
},
12-
"ssh": {
13-
"user": "example.com",
14-
"server": "ssh.hosting-provider.com",
15-
"folders": {
16-
"live": "~/app",
17-
"alpha": "~/alpha"
18-
}
21+
"scripts": {
22+
"dev": "vite",
23+
"build": "vite build",
24+
"mix:dev": "yarn build:clean && mix",
25+
"mix:prod": "yarn build:clean && mix --production",
26+
"commit": "clear && git config core.ignorecase false && branch=\"$(git symbolic-ref -q HEAD)\" || \"dev\" && branch=${branch##refs/heads/} && branch=${branch:-HEAD} && echo Commiting to Branch \"$branch\" && echo Please type your commit message && read msg && clear && git add . && git commit -m \"$msg\"",
27+
"push:git": "clear && git config core.ignorecase false && branch=\"$(git symbolic-ref -q HEAD)\" || \"dev\" && branch=${branch##refs/heads/} && branch=${branch:-HEAD} && echo Pushing to Branch \"$branch\" && echo Please type your commit message && read msg && clear && git add . && git commit -m \"$msg\" && git push origin \"$branch\"",
28+
"push:live": "clear && echo Starting Live Push && yarn build:prod && yarn sync:live && echo Finished Live Push",
29+
"push:alpha": "clear && echo Starting Alpha Push && yarn build:alpha && yarn sync:alpha && echo Finished Alpha Push ",
30+
"build:prod": "yarn --cwd $npm_package_config_app_path build:prod && yarn mix:prod",
31+
"build:alpha": "yarn --cwd $npm_package_config_app_path build:alpha && yarn mix:dev",
32+
"build:dev": "yarn --cwd $npm_package_config_app_path build:dev && yarn mix:dev",
33+
"build:icons": "yarn --cwd $npm_package_config_app_path icons",
34+
"make:ssl": "yarn --cwd $npm_package_config_app_path ssl",
35+
"app": "yarn --cwd $npm_package_config_app_path $type $package",
36+
"quasar": "yarn --cwd $npm_package_config_app_path quasar $cmd",
37+
"fresh": "php artisan migrate:fresh && php artisan migrate --path=database/migrations/imports && php artisan db:seed",
38+
"start:web": "yarn && quasar dev",
39+
"start:queue": "php artisan queue:work --timeout=36000 --stop-when-empty",
40+
"sync:live": "echo Starting File Sync && rsync -avz --delete --exclude-from=\".syncignore\" -e \"ssh -p22 -i ~/.ssh/sync\" * $npm_package_config_ssh_user@$npm_package_config_ssh_server:$npm_package_config_ssh_folders_live && ssh -i ~/.ssh/sync $npm_package_config_ssh_user@$npm_package_config_ssh_server \"cd $npm_package_config_ssh_folders_live && /usr/bin/php74 -f /usr/local/bin/composer2 install && /usr/bin/php74 artisan config:cache && /usr/bin/php74 artisan migrate && /usr/bin/php74 artisan storage:link --force\" && echo Finished Live File Sync",
41+
"sync:alpha": "echo Starting File Sync && rsync -avz --delete --exclude-from=\".syncignore\" -e \"ssh -p22 -i ~/.ssh/sync\" * $npm_package_config_ssh_user@$npm_package_config_ssh_server:$npm_package_config_ssh_folders_alpha && ssh -i ~/.ssh/sync $npm_package_config_ssh_user@$npm_package_config_ssh_server \"cd $npm_package_config_ssh_folders_alpha && /usr/bin/php74 -f /usr/local/bin/composer2 install && /usr/bin/php74 artisan config:cache && /usr/bin/php74 artisan migrate && /usr/bin/php74 artisan storage:link --force\" && echo Finished Alpha File Sync",
42+
"build:clean": "echo Cleaning old build && del-cli public/assets public/img public/pdfjs public/mix-manifest.json",
43+
"lint": "eslint --ext .js,.vue ./",
44+
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
45+
"test": "echo \"No test specified\" && exit 0"
46+
},
47+
"dependencies": {
48+
"@coders-tm/vue-number-format": "^3.1.2",
49+
"@originjs/vite-plugin-require-context": "^1.0.9",
50+
"@quasar/extras": "^1.0.0",
51+
"axios": "^0.27",
52+
"lodash": "^4.17.19",
53+
"pinia": "^2.0.11",
54+
"quasar": "^2.6.0",
55+
"vue": "^3.0.0",
56+
"vue-i18n": "^9.0.0",
57+
"vue-router": "^4.0.0"
58+
},
59+
"devDependencies": {
60+
"@intlify/vite-plugin-vue-i18n": "^3.3.1",
61+
"@originjs/vite-plugin-require-context": "^1.0.9",
62+
"@quasar/app-vite": "^1.0.0",
63+
"autoprefixer": "^10.4.2",
64+
"cross-env": "^7.0.3",
65+
"del-cli": "^5.0.0",
66+
"dotenv": "^16.0.1",
67+
"eslint": "^8.10.0",
68+
"eslint-config-prettier": "^8.1.0",
69+
"eslint-plugin-vue": "^9.0.0",
70+
"laravel-mix": "^6.0.49",
71+
"laravel-vite-plugin": "^0.5.0",
72+
"postcss": "^8.1.14",
73+
"prettier": "^2.5.1",
74+
"vite": "^3.0.0"
75+
},
76+
"engines": {
77+
"node": "^18 || ^16 || ^14.19",
78+
"npm": ">= 6.13.4",
79+
"yarn": ">= 1.21.1"
1980
}
20-
},
21-
"scripts": {
22-
"dev": "vite",
23-
"build": "vite build",
24-
"mix:dev": "yarn build:clean && mix",
25-
"mix:prod": "yarn build:clean && mix --production",
26-
"commit": "clear && git config core.ignorecase false && branch=\"$(git symbolic-ref -q HEAD)\" || \"dev\" && branch=${branch##refs/heads/} && branch=${branch:-HEAD} && echo Commiting to Branch \"$branch\" && echo Please type your commit message && read msg && clear && git add . && git commit -m \"$msg\"",
27-
"push:git": "clear && git config core.ignorecase false && branch=\"$(git symbolic-ref -q HEAD)\" || \"dev\" && branch=${branch##refs/heads/} && branch=${branch:-HEAD} && echo Pushing to Branch \"$branch\" && echo Please type your commit message && read msg && clear && git add . && git commit -m \"$msg\" && git push origin \"$branch\"",
28-
"push:live": "clear && echo Starting Live Push && yarn build:prod && yarn sync:live && echo Finished Live Push",
29-
"push:alpha": "clear && echo Starting Alpha Push && yarn build:alpha && yarn sync:alpha && echo Finished Alpha Push ",
30-
"build:prod": "yarn --cwd $npm_package_config_app_path build:prod && yarn mix:prod",
31-
"build:alpha": "yarn --cwd $npm_package_config_app_path build:alpha && yarn mix:dev",
32-
"build:dev": "yarn --cwd $npm_package_config_app_path build:dev && yarn mix:dev",
33-
"build:icons": "yarn --cwd $npm_package_config_app_path icons",
34-
"make:ssl": "yarn --cwd $npm_package_config_app_path ssl",
35-
"app": "yarn --cwd $npm_package_config_app_path $type $package",
36-
"quasar": "yarn --cwd $npm_package_config_app_path quasar $cmd",
37-
"fresh": "php artisan migrate:fresh && php artisan migrate --path=database/migrations/imports && php artisan db:seed",
38-
"start:web": "yarn && quasar dev",
39-
"start:queue": "php artisan queue:work --timeout=36000 --stop-when-empty",
40-
"sync:live": "echo Starting File Sync && rsync -avz --delete --exclude-from=\".syncignore\" -e \"ssh -p22 -i ~/.ssh/sync\" * $npm_package_config_ssh_user@$npm_package_config_ssh_server:$npm_package_config_ssh_folders_live && ssh -i ~/.ssh/sync $npm_package_config_ssh_user@$npm_package_config_ssh_server \"cd $npm_package_config_ssh_folders_live && /usr/bin/php74 -f /usr/local/bin/composer2 install && /usr/bin/php74 artisan config:cache && /usr/bin/php74 artisan migrate && /usr/bin/php74 artisan storage:link --force\" && echo Finished Live File Sync",
41-
"sync:alpha": "echo Starting File Sync && rsync -avz --delete --exclude-from=\".syncignore\" -e \"ssh -p22 -i ~/.ssh/sync\" * $npm_package_config_ssh_user@$npm_package_config_ssh_server:$npm_package_config_ssh_folders_alpha && ssh -i ~/.ssh/sync $npm_package_config_ssh_user@$npm_package_config_ssh_server \"cd $npm_package_config_ssh_folders_alpha && /usr/bin/php74 -f /usr/local/bin/composer2 install && /usr/bin/php74 artisan config:cache && /usr/bin/php74 artisan migrate && /usr/bin/php74 artisan storage:link --force\" && echo Finished Alpha File Sync",
42-
"build:clean": "echo Cleaning old build && del-cli public/assets public/img public/pdfjs public/mix-manifest.json",
43-
"lint": "eslint --ext .js,.vue ./",
44-
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
45-
"test": "echo \"No test specified\" && exit 0"
46-
},
47-
"dependencies": {
48-
"@coders-tm/vue-number-format": "^3.1.2",
49-
"@originjs/vite-plugin-require-context": "^1.0.9",
50-
"@quasar/extras": "^1.0.0",
51-
"axios": "^0.27",
52-
"lodash": "^4.17.19",
53-
"pinia": "^2.0.11",
54-
"quasar": "^2.6.0",
55-
"vue": "^3.0.0",
56-
"vue-i18n": "^9.0.0",
57-
"vue-router": "^4.0.0"
58-
},
59-
"devDependencies": {
60-
"@intlify/vite-plugin-vue-i18n": "^3.3.1",
61-
"@originjs/vite-plugin-require-context": "^1.0.9",
62-
"@quasar/app-vite": "^1.0.0",
63-
"autoprefixer": "^10.4.2",
64-
"cross-env": "^7.0.3",
65-
"del-cli": "^5.0.0",
66-
"dotenv": "^16.0.1",
67-
"eslint": "^8.10.0",
68-
"eslint-config-prettier": "^8.1.0",
69-
"eslint-plugin-vue": "^9.0.0",
70-
"laravel-mix": "^6.0.49",
71-
"laravel-vite-plugin": "^0.5.0",
72-
"postcss": "^8.1.14",
73-
"prettier": "^2.5.1",
74-
"vite": "^3.0.0"
75-
},
76-
"engines": {
77-
"node": "^18 || ^16 || ^14.19",
78-
"npm": ">= 6.13.4",
79-
"yarn": ">= 1.21.1"
80-
}
8181
}

0 commit comments

Comments
 (0)