-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 995 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 995 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
{
"name": "bit-01/sy-faker",
"description": "A PHP package for generating realistic Syrian Arabic fake data—names, addresses, text, and more. Designed for Laravel 8–12 with a Faker-like API, it delivers authentic Syrian dialect content, from Damascene streets to Aleppine names. Perfect for testing, seeding databases, or placeholder content with local flavor.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Bassel Aflak / باسل عفلق",
"email": "bassel.af@gmail.com"
}
],
"require": {
"php": ">=7.4",
"illuminate/support": ">=8.0",
"alkoumi/laravel-hijri-date": "^1.0"
},
"autoload": {
"psr-4": {
"Bit\\SyFaker\\": "src/"
},
"files": [
"src/helper.php"
]
},
"extra": {
"laravel": {
"providers": [
"Bit\\SyFaker\\SyFakerServiceProvider"
]
}
}
}