-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 910 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 910 Bytes
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
{
"name": "dominicwatts/faker",
"description": "Console based fake data generator - just generate what you need",
"type": "magento2-module",
"license": "proprietary",
"version": "1.2.4",
"authors": [
{
"name": "Dominic Xigen",
"email": "dominic@xigen.co.uk"
}
],
"minimum-stability": "dev",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"dominicwatts/fakerfork": "*",
"magento/framework": "*",
"php": ">=7.4.0",
"symfony/console": "*",
"magento/module-catalog": "*",
"magento/module-quote": "*",
"magento/module-shipping": "*"
},
"autoload": {
"psr-4": {
"Xigen\\Faker\\": ""
},
"files": [
"registration.php"
]
}
}