-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
49 lines (49 loc) · 845 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
43
44
45
46
47
48
49
{
"name": "faizshukri/phpquran",
"description": "Complete PHP Quran Resource",
"license": "MIT",
"keywords": [
"quran",
"al-quran",
"muslim",
"islam",
"kitab",
"phpquran"
],
"authors": [
{
"name": "Faiz Shukri",
"email": "faizshukri90@gmail.com"
}
],
"require": {
"php": ">=5.6.0",
"symfony/console": "^7.0|^6.0|^5.0|^4.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5|^6.5|^5.7"
},
"autoload": {
"psr-4": {
"FaizShukri\\Quran\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests"
}
},
"bin": [
"bin/quran"
],
"extra": {
"laravel": {
"providers": [
"FaizShukri\\Quran\\QuranServiceProvider"
],
"aliases": {
"Quran": "FaizShukri\\Quran\\Facades\\Quran"
}
}
}
}