-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.02 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.02 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
{
"name": "craftcms/demo-plugin",
"description": "Showcase of Laravel features in Craft 6",
"type": "craft-plugin",
"require": {
"php": ">=8.4",
"craftcms/cms": "6.x-dev"
},
"autoload": {
"psr-4": {
"CraftCms\\DemoPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"repositories": [],
"extra": {
"handle": "_demo-plugin",
"name": "Demo Plugin",
"developer": "Pixel & Tonic",
"documentationUrl": "",
"class": "CraftCms\\DemoPlugin\\Demo",
"laravel": {
"providers": [
"CraftCms\\DemoPlugin\\Demo"
]
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.4"
},
"allow-plugins": {
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true,
"yiisoft/yii2-composer": true
}
},
"require-dev": {
"orchestra/testbench": "^10.6",
"pestphp/pest": "^v4.0",
"pestphp/pest-plugin-arch": "^v4.0",
"pestphp/pest-plugin-laravel": "^v4.0"
}
}