-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
52 lines (52 loc) · 1.28 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
{
"name": "jhoff/blade-vue-directive",
"description": "Vue directive for Laravel Blade",
"keywords": [
"laravel",
"blade",
"vue.js"
],
"homepage": "https://github.com/jhoff/blade-vue-directive",
"license": "MIT",
"authors": [
{
"name": "Jordan Hoff",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"laravel/framework": "^5.4|^6.0|^7.0|^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13|^2.16",
"mockery/mockery": "^1.0|^1.3.1",
"orchestra/testbench": "^4.0|^6.0",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^8.0|^9.3",
"squizlabs/php_codesniffer": "^2.9|^3.5",
"two-thirds/artisan-anywhere": "^1.2",
"two-thirds/laravel-test-suite": "^4.1"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Jhoff\\BladeVue\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jhoff\\BladeVue\\Testing\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Jhoff\\BladeVue\\DirectiveServiceProvider"
]
}
}
}