-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.18 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.18 KB
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
{
"name": "interconnectit/laravel-local-server",
"type": "composer-plugin",
"description": "The local server package providers a local development environment for Laravel projects.",
"keywords": [
"laravel",
"docker"
],
"homepage": "https://interconnectit.com",
"license": "MIT",
"authors": [
{
"name": "interconnect/it",
"email": "support@interconnectit.com",
"homepage": "https://interconnectit.com/"
}
],
"require": {
"php": "^7.3|^8.0",
"composer-plugin-api": "^2.3",
"symfony/filesystem": "^5.1"
},
"require-dev": {
"composer/composer": "^2.3",
"phpstan/phpstan": "^0.12.30",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"InterconnectIt\\LaravelLocalServer\\": "src"
}
},
"scripts": {
"analyse": [
"phpstan analyse -l 0 src"
],
"lint": [
"phpcs -p --standard=psr2 src"
]
},
"extra": {
"class": "InterconnectIt\\LaravelLocalServer\\Plugin"
},
"config": {
"sort-packages": true
}
}