-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
69 lines (69 loc) · 1.78 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "m2s/laravel-nuxt",
"description": "NuxtJS framework integration for Laravel",
"version": "1.2.0",
"type": "library",
"keywords": [
"laravel",
"nuxtjs",
"nuxt",
"spa",
"pwa",
"typescript"
],
"license": "MIT",
"authors": [
{
"name": "Michael Marcenich",
"email": "info@m-squared-solutions.it"
}
],
"support": {
"email": "info@m-squared-solutions.it",
"issues": "https://github.com/m2sd/laravel-nuxt/issues",
"source": "https://github.com/m2sd/laravel-nuxt"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint:php-cs-fixer": "php-cs-fixer fix --dry-run --diff --ansi",
"lint:phpcs": "phpcs . --colors",
"lint:phpmd": "phpmd . ansi phpmd.xml",
"lint": [
"@lint:php-cs-fixer",
"@lint:phpcs",
"@lint:phpmd"
],
"lint:fix": [
"php-cs-fixer fix --ansi",
"phpcbf . --colors"
],
"lint:staged": "grumphp run --ansi"
},
"require": {
"laravel/framework": "^8.0",
"illuminate/support": "^8.0"
},
"require-dev": {
"phpmd/phpmd": "^2.8",
"squizlabs/php_codesniffer": "^3.5",
"phpro/grumphp": "^0.18.0",
"friendsofphp/php-cs-fixer": "^2.16",
"pedrotroller/php-cs-custom-fixer": "^2.23"
},
"autoload": {
"psr-4": {
"M2S\\LaravelNuxt\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"M2S\\LaravelNuxt\\LaravelNuxtServiceProvider"
],
"aliases": {
"Nuxt": "M2S\\LaravelNuxt\\Facades\\Nuxt"
}
}
}
}