forked from razorpay/ifsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.39 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
{
"name": "razorpay/ifsc",
"description": "Razorpay IFSC Codes Library",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Abhay Rana",
"email": "nemo@razorpay.com"
}
],
"autoload": {
"psr-4": {
"Razorpay\\IFSC\\": "src/php"
}
},
"autoload-dev": {
"psr-4": { "Razorpay\\IFSC\\Tests\\": "tests/php/" }
},
"archive": {
"exclude": [
"/scraper/",
"/node_modules/",
"/src/node/",
"/src/ruby/",
"/src/elixir/",
"/tests/ruby/",
"/tests/node/",
"/tests/elixir/",
"/tests/fixture/exvcr/",
"/.npmignore",
"/Gemfile*",
"/package.json",
"/mix.exs",
"/mix.lock",
"/priv/ifsc-data/"
]
},
"require": {
"php": "^7.1",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.6",
"php-http/message-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"guzzlehttp/psr7" : "^1.3",
"php-http/message" : "^1.7",
"php-http/mock-client" : "^0.3 || ^1.0",
"phpunit/phpunit" : "^6.0 || ^8.0 || ^7.0",
"symfony/yaml": "^5.0"
},
"scripts": {
"test": "phpunit"
}
}