This repository has been archived by the owner on Apr 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
69 lines (69 loc) · 2.62 KB
/
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
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
{
"name": "cakasim/payone-sdk",
"description": "A SDK for PAYONE payment integration.",
"type": "library",
"keywords": [
"payone",
"payment",
"sdk"
],
"homepage": "https://cakasim.de",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "Fabian Böttcher",
"email": "[email protected]",
"homepage": "https://cakasim.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Cakasim/php-payone-sdk/issues",
"source": "https://github.com/Cakasim/php-payone-sdk"
},
"minimum-stability": "stable",
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-openssl": "*",
"psr/http-message": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/log": "^1.1",
"psr/container": "^1.0"
},
"require-dev": {},
"suggest": {
"cakasim/payone-sdk-http-message": "Provides the default HTTP message implementation.",
"cakasim/payone-sdk-stream-client": "Provides the default HTTP client implementation.",
"cakasim/payone-sdk-silent-logger": "Provides the default logger implementation."
},
"autoload": {
"psr-4": {
"Cakasim\\Payone\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cakasim\\Payone\\Sdk\\Tests\\": "tests/"
}
},
"scripts": {
"download-phpcsf": "curl --silent -L https://cs.symfony.com/download/php-cs-fixer-v2.phar --create-dirs --output vendor/bin/phpcsf",
"download-phpstan": "curl --silent -L https://github.com/phpstan/phpstan/releases/download/0.12.5/phpstan.phar --create-dirs --output vendor/bin/phpstan",
"download-phpunit": "curl --silent -L https://phar.phpunit.de/phpunit-8.phar --create-dirs --output vendor/bin/phpunit",
"phpcsf": "php vendor/bin/phpcsf -v fix --dry-run --allow-risky=yes",
"phpstan": "php vendor/bin/phpstan analyse",
"phpunit": "php vendor/bin/phpunit"
},
"scripts-descriptions": {
"download-phpcsf": "Downloads PHP Coding Standards Fixer and saves it to vendor/bin/phpcsf.",
"download-phpstan": "Downloads PHP Coding Standards Fixer and saves it to vendor/bin/phpcsf.",
"download-phpunit": "Downloads PHPUnit 8 and saves it to vendor/bin/phpunit.",
"phpcsf": "Runs PHP Coding Standards Fixer to identify coding style issues.",
"phpstan": "Runs static code analysis to detect possible errors / bugs.",
"phpunit": "Runs the tests."
}
}