-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 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
41
42
43
44
45
46
47
48
49
{
"name": "alifaraun/laravel-moamalat-pay",
"type": "library",
"description": "Easy - Moamalat Lightbox integration for Laravel.",
"require": {
"laravel/framework": "^11.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"MoamalatPay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MoamalatPay\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/testbench package:test",
"analyse": "vendor/bin/phpstan analyse --memory-limit=2G",
"lint": [
"@php vendor/bin/pint",
"@php vendor/bin/phpstan analyse"
]
},
"extra": {
"laravel": {
"providers": [
"MoamalatPay\\Providers\\MoamalatPayProvider"
]
}
},
"authors": [
{
"name": "Ali Faraun",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require-dev": {
"guzzlehttp/guzzle": "7.8.2",
"nunomaduro/collision": "^8.0",
"laravel/legacy-factories": "1.x-dev",
"laravel/pint": "dev-main",
"larastan/larastan": "2.x-dev",
"orchestra/testbench": "9.x-dev"
}
}