-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
56 lines (56 loc) · 1.64 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
{
"name": "haringsrob/laravel-dev-tools",
"description": "Laravel dev tools contains of multiple tools to ease Laravel development: Blade lsp",
"keywords": ["Laravel", "blade", "lsp", "Language server", "console", "cli"],
"homepage": "https://github.com/haringsrob/laravel-dev-tools",
"type": "project",
"license": "Apache-2.0",
"support": {
"issues": "https://github.com/haringsrob/laravel-dev-tools/issues",
"source": "https://github.com/haringsrob/laravel-dev-tools"
},
"authors": [
{
"name": "Harings Rob",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"barryvdh/laravel-ide-helper": "^2.13",
"iamcal/sql-parser": "^0.4.0",
"illuminate/support": "^9.3|^10",
"illuminate/view": "^9.3|^10",
"livewire/livewire": "^3",
"phpactor/language-server": "^1.1",
"phpactor/text-document": "^1.2",
"soyhuce/next-ide-helper": "^0.14.0",
"spatie/invade": "^1.0"
},
"require-dev": {
"laravel-zero/framework": "^10.0",
"mockery/mockery": "^1.4.4",
"symfony/var-dumper": "^6.2"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/laravel-dev-tools"]
}