-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 843 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 843 Bytes
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
{
"name": "utopia-php/pay",
"description": "A simple library to manage payments using multiple payment provider adapters",
"type": "library",
"keywords": ["php","framework", "utopia", "payment"],
"license": "MIT",
"minimum-stability": "stable",
"scripts": {
"lint": "./vendor/bin/pint --test",
"format": "./vendor/bin/pint",
"test": "vendor/bin/phpunit --configuration phpunit.xml",
"check": "./vendor/bin/phpstan analyse --level 8 src tests"
},
"autoload": {
"psr-4": {"Utopia\\Pay\\": "src/Pay"}
},
"autoload-dev": {
"psr-4": {"Utopia\\Tests\\": "tests/Pay"}
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"laravel/pint": "1.2.*",
"phpstan/phpstan": "1.9.x-dev"
}
}