Adding license to composer.json

This commit is contained in:
aydiv
2013-03-08 07:41:59 +05:30
parent 69cb3c4dcb
commit 9e09f7bff5

View File

@@ -1,21 +1,28 @@
{ {
"name": "paypal/rest-api-sdk-php", "name": "paypal/rest-api-sdk-php",
"description": "PayPal's PHP SDK for REST APIs", "description": "PayPal's PHP SDK for REST APIs",
"keywords": ["paypal", "payments", "rest", "sdk"], "keywords": ["paypal", "payments", "rest", "sdk"],
"type": "library", "type": "library",
"homepage": "https://github.com/paypal/rest-api-sdk-php", "license": "Apache2",
"require": { "homepage": "https://github.com/paypal/rest-api-sdk-php",
"php": ">=5.3.0", "authors": [
"ext-curl": "*", {
"ext-json": "*", "name": "PayPal",
"paypal/sdk-core-php": "1.2.*" "homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
}, }
"require-dev": { ],
"phpunit/phpunit": "3.7.*" "require": {
}, "php": ">=5.3.0",
"autoload": { "ext-curl": "*",
"psr-0": { "ext-json": "*",
"PayPal": "lib/" "paypal/sdk-core-php": "1.2.*"
} },
} "require-dev": {
} "phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"PayPal": "lib/"
}
}
}