This repository was archived by the owner on Jan 28, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
122 lines (122 loc) · 3.33 KB
/
composer.json
File metadata and controls
122 lines (122 loc) · 3.33 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "package-wizard/installer",
"description": "Package Wizard is a composer plugin for creating a new packages using CLI tool.",
"license": "MIT",
"type": "project",
"keywords": [
"boilerplate",
"composer",
"init",
"initializer",
"installer",
"laravel",
"package",
"packages",
"php",
"plugin",
"project",
"symfony",
"template",
"templates",
"wizard"
],
"authors": [
{
"name": "Andrey Helldar",
"email": "helldar@dragon-code.pro",
"homepage": "https://dragon-code.pro"
}
],
"homepage": "https://package-wizard.com",
"support": {
"issues": "https://github.com/package-wizard/installer/issues",
"source": "https://github.com/package-wizard/installer"
},
"funding": [
{
"type": "boosty",
"url": "https://boosty.to/dragon-code"
},
{
"type": "yoomoney",
"url": "https://yoomoney.ru/to/410012608840929"
}
],
"require": {
"php": "^8.2",
"ext-json": "*"
},
"require-dev": {
"archtechx/enums": "^1.1.2",
"dragon-code/codestyler": "^6.0",
"dragon-code/support": "^6.16",
"illuminate/http": "^12.20",
"illuminate/translation": "^12.20",
"illuminate/validation": "^12.20",
"justinrainbow/json-schema": "^6.4.2",
"laravel-lang/lang": "^15.22.5",
"laravel-zero/framework": "^12.0",
"laravel/prompts": "~0.3.6",
"mockery/mockery": "^1.6.12",
"pestphp/pest": "^3.8.2",
"pestphp/pest-plugin-type-coverage": "^3.6",
"spatie/laravel-data": "^4.17.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"PackageWizard\\Installer\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"PackageWizard\\Tests\\": "tests/"
}
},
"bin": [
"paw"
],
"config": {
"allow-plugins": {
"dragon-code/codestyler": true,
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"post-update-cmd": [
"cp vendor/dragon-code/codestyler/presets/pint/8.4.json pint.json",
"cp vendor/dragon-code/codestyler/.editorconfig .editorconfig",
"composer normalize"
],
"style": "vendor/bin/pint --parallel",
"test": [
"@test:coverage",
"@test:types",
"@test:unit"
],
"test:coverage": [
"Composer\\Config::disableProcessTimeout",
"@php vendor/bin/pest --type-coverage"
],
"test:types": [
"Composer\\Config::disableProcessTimeout",
"@php vendor/bin/pest --type-coverage --min=95"
],
"test:unit": [
"Composer\\Config::disableProcessTimeout",
"@php vendor/bin/pest --parallel"
],
"test:update": [
"rm -rf tests/.pest/snapshots",
"@test:unit"
]
}
}