-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (75 loc) · 2.33 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
70
71
72
73
74
75
76
{
"name": "defstudio/dock",
"description": "A docker containers manager built with laravel-zero",
"keywords": ["dock", "docker", "docker compose", "containers", "manager"],
"homepage": "https://github.com/defstudio/dock",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/defstudio/dock/issues",
"source": "https://github.com/defstudio/dock"
},
"authors": [
{
"name": "Fabio Ivona",
"email": "fabio.ivona@defstudio.it"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"laravel/pint": "^1.0",
"mockery/mockery": "^1.4.4",
"nunomaduro/larastan": "^2.2",
"pestphp/pest": "^1.21.3",
"pestphp/pest-plugin-mock": "^1.0",
"pestphp/pest-plugin-parallel": "^1.2",
"spatie/pest-plugin-snapshots": "^1.1",
"laravel-zero/framework": "^10.0",
"illuminate/view": "^10.0",
"laminas/laminas-text": "^2.9",
"nunomaduro/termwind": "^1.13",
"spatie/invade": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"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/dock"],
"scripts": {
"lint": "pint",
"test:lint": "pint --test",
"test:types": "phpstan analyse --ansi",
"test:verbose": "@php ./vendor/bin/pest -v --colors=always --parallel --exclude-group=builds",
"test:unit": "@php ./vendor/bin/pest --colors=always --parallel --exclude-group=builds",
"test:builds": [
"Composer\\Config::disableProcessTimeout",
"@php ./vendor/bin/pest --colors=always --group=builds"
],
"test": [
"@test:lint",
"@test:types",
"@test:unit"
],
"update:snapshots": "vendor/bin/pest --colors=always -d --update-snapshots --exclude-group=builds"
}
}