-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.42 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.42 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
{
"name": "moztopia/lavackage",
"description": "A Laravel 12+ Package used for helpers, commands, and other common tools.",
"version": "0.1.0",
"type": "library",
"require": {
"php": "^8.3",
"laravel/framework": ">=12.0"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Moztopia\\Lavackage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Moztopia",
"email": "hello@moztopia.com"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Moztopia\\Lavackage\\LavackageServiceProvider"
]
},
"branch-alias": {
"dev-develop": "0.0.x-dev"
}
},
"scripts": {
"test": "pest",
"lint": "pint"
},
"keywords": [
"laravel",
"package",
"commands",
"logging",
"moztopia"
],
"homepage": "https://www.moztopia.com",
"support": {
"issues": "https://github.com/moztopia/lavackage/issues",
"source": "https://github.com/moztopia/lavackage"
}
}