-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.38 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
{
"name": "phpjuice/paypal-http-client",
"description": "PHP Http Client for PayPal's REST API",
"keywords": [
"phpjuice",
"paypal",
"http",
"client"
],
"homepage": "https://github.com/phpjuice/paypal-http-client",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "PHPJuice",
"email": "phpjuice@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"ext-json": "*",
"guzzlehttp/psr7": "^1.6 || ^2.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"phpstan/phpstan": "^0.12",
"pestphp/pest": "^1.18"
},
"autoload": {
"psr-4": {
"PayPal\\Http\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/pest --colors=always",
"analyse": "phpstan analyse --ansi --debug",
"php-cs-fixer": [
"php-cs-fixer fix src --rules=@PSR2",
"php-cs-fixer fix tests --rules=@PSR2"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}