-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.98 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.98 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
{
"name": "stancer/stancer",
"description": "Stancer PHP library",
"homepage": "https://stancer.com",
"type": "library",
"keywords": [
"payments",
"payment solution",
"card",
"sepa"
],
"license": "MIT",
"autoload": {
"files": [
"src/polyfill.php"
],
"psr-4": {
"Stancer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stancer\\PHPStan\\": "tests/stan",
"Stancer\\Stub\\": "tests/Stub",
"Stancer\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"psr/http-message": "^2.0",
"psr/log": "^3.0"
},
"require-dev": {
"atoum/atoum": "^4.4",
"atoum/stubs": "^2.6",
"atoum/visibility-extension": "^2.0",
"fakerphp/faker": "^1.13",
"friendsofphp/php-cs-fixer": "^3.68",
"guzzlehttp/guzzle": "^7.2",
"jdslv/atoum-report-cobertura": "^1.1",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0"
},
"scripts": {
"create-doc": "php scripts/phpdoc.php",
"php-cs-check": "php-cs-fixer check -v --diff",
"php-cs-fixer": "php-cs-fixer fix -v",
"phpstan": "phpstan analyse --no-progress",
"test": "atoum",
"test:watch": [
"Composer\\Config::disableProcessTimeout",
"atoum --debug --loop"
]
},
"suggest": {
"monolog/monolog": "Allows to log interaction with the API"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"support": {
"docs": "https://stancer.com/documentation/api/",
"issues": "https://gitlab.com/wearestancer/library/lib-php/-/issues",
"source": "https://gitlab.com/wearestancer/library/lib-php"
}
}