-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
42 lines (42 loc) · 959 Bytes
/
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": "jordanbeattie/craftcms-faker",
"description": "Fake entry fields for CraftCMS",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin"
],
"require": {
"craftcms/cms": "^3|^4.0.0-alpha",
"php": "^8.0.2"
},
"autoload": {
"psr-4": {
"Jordanbeattie\\CraftcmsFaker\\": "src/"
}
},
"authors": [
{
"name": "Jordan Beattie",
"email": "[email protected]"
}
],
"extra": {
"name": "Faker",
"handle": "faker",
"class": "Jordanbeattie\\CraftcmsFaker\\Faker"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}