-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 929 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 929 Bytes
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
{
"name": "pepco-api/php-rest-sdk",
"type": "library",
"version": "0.4.0",
"description": "PHP package to connect your application to Pasargad Internet Payment Gateway through RESTful API",
"license": "Apache-2.0",
"homepage": "https://github.com/pepco-api/php-rest-sdk",
"support": {
"issues": "https://github.com/pepco-api/php-rest-sdk/issues"
},
"authors": [{
"name": "Reza Seyf",
"email": "rseyf@hotmail.com"
}],
"require": {
"php": ">=5.6.0",
"ext-curl": "*",
"ext-json": "*",
"curl/curl": "1.9.*"
},
"autoload": {
"psr-4": {
"Pasargad\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pasargad\\": "tests/"
}
},
"scripts": {
"code": "phpcs --encoding=utf-8 -s",
"util": "phpunit --testsuite util",
"test": "phpunit"
}
}