-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
39 lines (39 loc) · 917 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
{
"name": "mpt/provider",
"description": "Library for parsing JAKIM prayer data",
"type": "library",
"authors": [
{
"name": "Noorzaini Ilhami",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0",
"fabpot/goutte": "~3.1",
"nesbot/carbon": "~1.20",
"php-http/client-common": "^1.8",
"php-http/discovery": "^1.4",
"php-http/httplug": "^1.1",
"php-http/message": "^1.7",
"willdurand/geocoder": "~3.3"
},
"require-dev": {
"php-http/guzzle6-adapter": "^1.1",
"php-http/mock-client": "^1.1",
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"Mpt\\": "src/Mpt"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}