Skip to content

Commit 3f72637

Browse files
committed
feat: initial commit
0 parents  commit 3f72637

15 files changed

+8045
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/vendor/
2+
node_modules/
3+
npm-debug.log
4+
yarn-error.log

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Michael Marcenich
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

composer.json

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "m2s/laravel-nuxt",
3+
"description": "NuxtJS framework integration for Laravel",
4+
"version": "1.0.0",
5+
"type": "library",
6+
"keywords": [
7+
"laravel",
8+
"nuxtjs",
9+
"nuxt",
10+
"spa",
11+
"pwa",
12+
"typescript"
13+
],
14+
"license": "MIT",
15+
"authors": [
16+
{
17+
"name": "Michael Marcenich",
18+
"email": "info@m-squared-solutions.it"
19+
}
20+
],
21+
"support": {
22+
"email": "info@m-squared-solutions.it",
23+
"issues": "https://github.com/m2sd/laravel-nuxt/issues",
24+
"source": "https://github.com/m2sd/laravel-nuxt"
25+
},
26+
"minimum-stability": "dev",
27+
"prefer-stable": true,
28+
"require": {
29+
"laravel/framework": "^7.0"
30+
},
31+
"require-dev": {
32+
"phpmd/phpmd": "^2.8",
33+
"squizlabs/php_codesniffer": "^3.5",
34+
"phpro/grumphp": "^0.18.0"
35+
},
36+
"extra": {
37+
"laravel": {
38+
"providers": [
39+
"M2S\\LaravelNuxt\\LaravelNuxtServiceProvider"
40+
]
41+
}
42+
}
43+
}

0 commit comments

Comments
 (0)