forked from waplar/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.66 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
{
"name": "waplar/framework",
"description": "Waplar is an extension framework built on Laravel, designed to make development more elegant and effortless through its simple design and efficient features.",
"license": "MIT",
"autoload": {
"psr-4": {
"Artist\\": "src/Artist"
},
"files": [
"src/Artist/Foundation/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "KanekiYuto",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/waplar/framework/issues",
"source": "https://github.com/waplar/framework"
},
"require": {
"php": "^8.2 || ^8.3 || ^8.4",
"laravel/framework": "^11.0 || ^12.0"
},
"replace": {
"artist/preacher": "self.version"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"branch-alias": {
"dev-alpha.x": "1.0.x-dev"
},
"laravel": {
"providers": [
"Artist\\WaplarServiceProvider"
],
"aliases": {}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.68",
"laravel/pint": "^1.20",
"orchestra/testbench": "^9.9",
"pestphp/pest": "^3.7",
"pestphp/pest-plugin-laravel": "^3.0",
"spatie/laravel-ray": "^1.39"
}
}