-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 1004 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
{
"name": "payavel/checkout",
"description": "The best checkout solution that integrates with any payment processor and Laravel.",
"license": "MIT",
"authors": [
{
"name": "Robert Kujawa",
"email": "robert.kujawa@proton.me"
}
],
"require-dev": {
"orchestra/testbench": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Payavel\\Checkout\\": "src/",
"Payavel\\Checkout\\Database\\Factories\\": "src/database/factories/",
"Payavel\\Checkout\\Database\\Seeders\\": "src/database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Payavel\\Checkout\\Tests\\": "tests/",
"Payavel\\Checkout\\Tests\\App\\": "tests/app/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Payavel\\Checkout\\PaymentServiceProvider"
]
}
}
}