-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 993 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": "i9w3b/faker",
"description": "Pacote Laravel que gera dados falsos.",
"keywords": ["i9w3b", "laravel", "package", "dev", "faker"],
"homepage": "https://github.com/i9w3b/faker",
"license": "MIT",
"authors": [{
"name": "Marcelo Sena",
"email": "suportemarcelosena@gmail.com",
"homepage": "https://github.com/i9w3b",
"role": "Developer"
}],
"require": {
"php": ">=7.2",
"fzaninotto/faker": "^1.9"
},
"require-dev": {},
"extra": {
"laravel": {
"providers": [
"I9W3b\\Faker\\FakerServiceProvider"
],
"aliases": {},
"branch-alias": {}
}
},
"autoload": {
"psr-4": {
"I9W3b\\Faker\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {}
},
"scripts": {},
"config": {
"sort-packages": true
}
}