-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
35 lines (35 loc) · 958 Bytes
/
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
{
"name": "hakito/cakephp-paypal-rest-plugin",
"type": "cakephp-plugin",
"description": "PayPal plugin for CakePHP using the REST api",
"homepage": "https://github.com/hakito/CakePHP-PayPalRest-Plugin",
"keywords": ["paypal", "rest", "cakephp", "payment"],
"license": "GPL-2.0",
"authors": [
{
"name": "Gerd Katzenbeisser",
"homepage": "https://github.com/hakito/CakePHP-PayPalRest-Plugin/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"PayPal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PayPal\\Test\\": "tests/"
}
},
"require": {
"cakephp/cakephp": "^5.0",
"paypal/rest-api-sdk-php" : ">=1.3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"cakephp/migrations": "^4.0"
},
"extra": {
"installer-name": "PayPal"
}
}