forked from tastyigniter/ti-ext-payregister
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
89 lines (89 loc) · 2.68 KB
/
Copy pathcomposer.json
File metadata and controls
89 lines (89 loc) · 2.68 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "tastyigniter/ti-ext-payregister",
"type": "tastyigniter-package",
"description": "Allows you to accept credit card payments using PayPal, Stripe, Authorize.Net and/or Mollie.",
"license": "MIT",
"authors": [
{
"name": "Sam Poyigi",
"email": "sam@sampoyigi.com"
}
],
"keywords": [
"tastyigniter",
"paypal",
"stripe",
"square",
"payment",
"gateway",
"authorizenet",
"mollie"
],
"require": {
"tastyigniter/core": "^v4.0",
"php-http/guzzle7-adapter": "^1.0",
"authorizenet/authorizenet": "2.0.2",
"stripe/stripe-php": "^7.93",
"mollie/mollie-api-php": "^2.0",
"square/square": "26.0.0.20230419"
},
"require-dev": {
"larastan/larastan": "^3.0",
"laravel/pint": "^1.2",
"pestphp/pest-plugin-laravel": "^3.0",
"rector/rector": "^2.0",
"sampoyigi/testbench": "^1.0"
},
"autoload": {
"psr-4": {
"Igniter\\PayRegister\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Igniter\\PayRegister\\Tests\\": "tests/"
}
},
"extra": {
"tastyigniter-extension": {
"code": "igniter.payregister",
"name": "Pay Register",
"icon": {
"class": "fa fa-cash-register",
"backgroundColor": "#FF4900",
"color": "#FFFFFF"
},
"homepage": "https://tastyigniter.com/marketplace/item/igniter-payregister"
},
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"composer/installers": true
},
"sort-packages": true
},
"scripts": {
"test:lint": "vendor/bin/pint --test --ansi",
"test:lint-fix": "vendor/bin/pint --ansi",
"test:refactor": "vendor/bin/rector process --dry-run --ansi",
"test:refactor-fix": "vendor/bin/rector process --ansi",
"test:static": "vendor/bin/phpstan analyse --memory-limit=1056M --ansi",
"test:static-fix": "vendor/bin/phpstan --generate-baseline --memory-limit=1056M --ansi",
"test:pest": "vendor/bin/pest",
"test:coverage": "vendor/bin/pest --coverage --exactly=100 --compact",
"test:type-coverage": "vendor/bin/pest --type-coverage --min=100",
"test": [
"@test:refactor",
"@test:static",
"@test:lint",
"@test:coverage"
]
}
}