-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
40 lines (40 loc) · 1.06 KB
/
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
{
"name": "jooyeshgar/moadian",
"description": "Laravel package for interacting with the Moadian API of intamedia.ir",
"type": "library",
"keywords": ["laravel", "moadian", "intamedia"],
"homepage": "https://github.com/Jooyeshgar/moadian",
"license": "GPL-3.0",
"authors": [
{
"name": "Hadi Aminzadeh",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^7.0",
"ramsey/uuid": "^4.2",
"symfony/cache": "^5.3|^6.0",
"phpseclib/phpseclib": "^3.0",
"firebase/php-jwt": "^6.9"
},
"autoload": {
"psr-4": {
"Jooyeshgar\\Moadian\\": "src/",
"Jooyeshgar\\Moadian\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0 || ^10.0",
"mockery/mockery": "^1.5"
},
"extra": {
"laravel": {
"providers": [
"Jooyeshgar\\Moadian\\MoadianServiceProvider"
]
}
}
}