-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.38 KB
/
Copy pathcomposer.json
File metadata and controls
55 lines (55 loc) · 1.38 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
{
"name": "aflorea4/laravel-netopia-payments",
"description": "Laravel package for Netopia Payments integration",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexandru Florea",
"email": "alex@imflorea.dev"
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/support": "^8.0|^9.0|^10.0",
"ext-openssl": "*",
"ext-dom": "*",
"guzzlehttp/guzzle": "^7.9"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0|^8.0",
"pestphp/pest": "^1.21|^2.0",
"pestphp/pest-plugin-laravel": "^1.1|^2.0"
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage"
},
"autoload": {
"psr-4": {
"Aflorea4\\NetopiaPayments\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Aflorea4\\NetopiaPayments\\NetopiaPaymentsServiceProvider"
],
"aliases": {
"NetopiaPayments": "Aflorea4\\NetopiaPayments\\Facades\\NetopiaPayments"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}