-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 980 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
36
37
{
"name": "dm79219/file_asynch_download",
"description": "Php library to run query in chunks asynchronously and downloading the result in CSV",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Divyanshu",
"email": "divyanshumahajan1@gmail.com"
}
],
"minimum-stability": "dev",
"repositories":[
{
"type":"git",
"url":"https://github.com/dm79219/file_asynch_download"
},
{
"type":"package",
"package":{
"name":"dm79219/file_asynch_download",
"version":"1.0.0",
"source":{
"type":"git",
"url":"https://github.com/dm79219/file_asynch_download",
"reference":"master"
}
}
}
],
"require": {
"php": ">=5.5.0"
},
"autoload": {
"files": ["src/library.php"]
}
}