forked from ranjithinnergys/rest-api-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.02 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
{
"name": "paypal/rest-api-sdk-php",
"description": "PayPal's PHP SDK for REST APIs",
"keywords": ["paypal", "payments", "rest", "sdk"],
"type": "library",
"license": "Apache-2.0",
"homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
"authors": [
{
"name": "PayPal",
"homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*",
"psr/log": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"friendsofphp/php-cs-fixer": "^2.16",
"gtjamesa/php-standards": "^1.0",
"illuminate/support": "^8.10"
},
"autoload": {
"psr-0": {
"PayPal": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"JamesAusten\\Dev\\": "lib/JamesAusten/Dev/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"fix": "./vendor/bin/php-cs-fixer fix"
}
}