-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.75 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 2.75 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
90
91
92
93
94
95
96
{
"name": "simpaypl/simpay",
"description": "Official SimPay API",
"type": "library",
"license": "MIT",
"keywords": [
"simpay",
"simpay-api",
"simpay-php",
"simpay-sdk",
"simpay-rest",
"simpay-api-php",
"simpay-php-sdk",
"simpay-sdk-php",
"simpay-rest-php",
"simpay-api-sdk",
"simpaypl",
"simpay.pl",
"simpay.pl-api",
"payments-api",
"payments-sdk",
"payments-rest",
"payments-api-php",
"payments-php-sdk",
"payments-sdk-php",
"payments-rest-php",
"payments-api-sdk",
"openapitools",
"openapi-generator",
"openapi",
"php",
"sdk",
"rest",
"api"
],
"homepage": "https://simpay.pl/",
"authors": [
{
"name": "Simpay",
"homepage": "https://www.simpay.pl"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^1.7 || ^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"pedrotroller/php-cs-custom-fixer": "^2.28",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^8.0 || ^9.0",
"rector/rector": "^0.19.0",
"symplify/easy-coding-standard": "*"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.4"
},
"bin-dir": "bin"
},
"autoload": {
"psr-4": { "Simpay\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "Simpay\\Test\\" : "tests/" }
},
"scripts": {
"test": "phpunit --colors=always",
"test:coverage": "phpunit --colors=always --coverage-text --coverage-html=build/coverage",
"phpstan": "phpstan analyse --ansi --no-progress --configuration phpstan.neon --memory-limit=1G",
"ecs": "ecs check --ansi --config ecs.php",
"ecs:fix": "ecs check --ansi --config ecs.php --fix",
"rector": "rector --ansi --dry-run",
"rector:fix": "rector --ansi",
"lint": [
"@ecs",
"@rector",
"@phpstan"
]
},
"scripts-descriptions": {
"test": "Run the PHPUnit test suite",
"test:coverage": "Run tests and produce HTML coverage report in build/coverage",
"phpstan": "Run static analysis (PHPStan)",
"ecs": "Check coding style (Easy Coding Standard)",
"ecs:fix": "Auto-fix coding style violations",
"rector": "Preview Rector refactorings (dry-run)",
"rector:fix": "Apply Rector refactorings",
"lint": "Run all linters: ECS, Rector (dry-run), PHPStan"
}
}