-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
42 lines (42 loc) · 995 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": "buihuycuong/vnfaker",
"description": "VNFaker is a Laravel package that generates fake data about name, city, address, phone,... in Viet Nam",
"type": "package",
"keywords": [
"vnfaker",
"data",
"viet nam",
"laravel",
"php",
"Bui Huy Cuong",
"laravel faker",
"Richard Bui"
],
"license": "MIT",
"homepage": "https://github.com/BuiHuyCuong/VNFaker",
"authors": [
{
"name": "Bui Huy Cuong",
"email": "buihuycuong1510@gmail.com"
}
],
"require": {},
"extra": {
"laravel": {
"providers": [
"Buihuycuong\\Vnfaker\\VNFakerServiceProvider"
],
"aliases": {
"VNFaker": "Buihuycuong\\Vnfaker\\Facades\\VNFaker"
}
}
},
"autoload": {
"psr-4": {
"Buihuycuong\\Vnfaker\\": "src"
},
"files": [
"src/helpers.php"
]
}
}