-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.16 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
50
51
52
53
54
55
{
"name": "asciisd/kashier",
"description": "A Laravel package for Kashier payment gateway integration",
"type": "library",
"license": "MIT",
"authors": [
{
"role": "Developer",
"name": "Amr Emad",
"email": "[email protected]",
"homepage": "https://www.asciisd.com/"
}
],
"autoload": {
"psr-4": {
"Asciisd\\Kashier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Asciisd\\Kashier\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"illuminate/support": "*",
"ext-curl": "*"
},
"require-dev": {
"pestphp/pest": "^2.36",
"pestphp/pest-plugin-laravel": "^2.0",
"orchestra/testbench": "^8.31",
"laravel/pint": "^1.20",
"phpstan/phpstan": "^2.1"
},
"extra": {
"laravel": {
"providers": [
"Asciisd\\Kashier\\Providers\\KashierServiceProvider"
],
"aliases": {
"Kashier": "Asciisd\\Kashier\\Facades\\Kashier"
}
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"sort-packages": true,
"optimize-autoloader": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}