forked from FriendsOfCake/cakephp-csvview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.77 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.77 KB
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
57
58
59
60
61
62
63
64
65
66
{
"name": "friendsofcake/cakephp-csvview",
"description": "A CSV View class for CakePHP 3.x",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"csv",
"view",
"export"
],
"homepage": "http://github.com/friendsofcake/cakephp-csvview",
"license": "MIT",
"authors": [
{
"name": "Jose Diaz-Gonzalez",
"email": "email@josediazgonzalez.com",
"homepage": "http://josediazgonzalez.com",
"role": "Maintainer"
},
{
"name":"ADmad",
"role":"Contributor",
"homepage":"https://github.com/admad"
},
{
"name":"Mark Scherer",
"role":"Contributor",
"homepage":"https://github.com/dereuromark"
},
{
"name":"Joshua Paling",
"role":"Contributor",
"homepage":"https://github.com/joshuapaling"
},
{
"name":"Gaurish Sharma",
"role":"Contributor",
"homepage":"https://github.com/gaurish"
},
{
"name":"Gregory Gaskill",
"role":"Contributor",
"homepage":"https://github.com/chronon"
}
],
"require": {
"php": ">=5.4.16",
"cakephp/cakephp": "~3.0"
},
"autoload": {
"psr-4": {
"CsvView\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CsvView\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"support": {
"email": "cakephp+csvview@josediazgonzalez.com",
"issues": "https://github.com/friendsofcake/cakephp-csvview/issues",
"source": "https://github.com/friendsofcake/cakephp-csvview"
}
}