-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.31 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
{
"name": "jacques/php-freepaid",
"type": "library",
"description": "Library for interacting with Freepaid's SOAP interface for vending pre-paid Airtime Vouchers",
"keywords": [
"airtime",
"freepaid"
],
"homepage": "https://github.com/jacques/php-vas-freepaid",
"license": "MIT",
"authors": [
{
"name": "Jacques Marneweck",
"email": "[email protected]",
"homepage": "https://github.com/jacques/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Jacques\\Freepaid\\": "src/"
}
},
"require": {
"php": "^7.3"
},
"require-dev": {
"brick/varexporter": "^0.3.5",
"php-vcr/php-vcr": "^1.5",
"php-vcr/phpunit-testlistener-vcr": "^3.2",
"phpunit/php-invoker": "^3.1",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.12.8",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.15"
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit --colors --debug --configuration=tests/phpunit.xml --coverage-clover build/logs/clover.xml --coverage-text",
"phpcs": "vendor/bin/phpcs --standard=PSR1,PSR2 --extensions=php src tests"
}
}