generated from Muetze42/lura-installer-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.08 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
{
"name": "norman-huth/package-init",
"description": "Initialize a (Laravel) Composer package.",
"license": "MIT",
"support": {
"docs": "https://github.com/Muetze42/package-init#readme",
"source": "https://github.com/Muetze42/package-init"
},
"authors": [
{
"name": "Norman Huth",
"homepage": "https://huth.it"
},
{
"name": "Nils Adermann",
"email": "naderman@naderman.de",
"homepage": "https://getcomposer.org"
},
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "https://getcomposer.org"
}
],
"require": {
"php": "^8.1",
"composer/composer": "^2.6",
"norman-huth/lura": "^v3.1.1"
},
"autoload": {
"psr-4": {
"NormanHuth\\PackageInit\\": "src/"
}
},
"scripts": {
"post-package-install": [
"lura register norman-huth/package-init"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}