-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.37 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.37 KB
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
{
"name": "64robots/checkout",
"description": "Checkout Package.",
"keywords": ["framework", "laravel", "checkout"],
"license": "MIT",
"type": "library",
"require": {
"64robots/stripe": "*",
"axlon/laravel-postal-code-validation": "^3.0",
"doctrine/dbal": "^2.13.3|^3.1.4",
"guzzlehttp/guzzle": "^7.0.1",
"illuminate/support": "^12.0",
"illuminate/database": "^12.0",
"laravel/framework": "^12.0",
"paypal/paypal-checkout-sdk": "1.0.1",
"php": "^8.2"
},
"require-dev": {
"filp/whoops": "^2.0",
"phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
"orchestra/testbench": "^8.0|^9.0|10.0"
},
"scripts" : {
"test" : "vendor/bin/phpunit"
},
"autoload": {
"files": [
"src/Helpers/Globals.php"
],
"psr-4": {
"R64\\Checkout\\": "src",
"R64\\Checkout\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"R64\\Checkout\\Tests\\": "tests"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/64robots/stripe"
}
],
"extra": {
"laravel": {
"providers": [
"R64\\Checkout\\CheckoutServiceProvider"
]
}
}
}