-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.17 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "graze/csv-token",
"description": "Tokenised Csv Reader",
"keywords": [
"graze",
"csv-token",
"csv",
"parser"
],
"homepage": "https://github.com/graze/csv-token",
"license": "MIT",
"authors": [
{
"name": "Harry Bragg",
"email": "h.bragg@graze.com",
"role": "Developer"
},
{
"name": "Graze Developers",
"email": "developers@graze.com",
"homepage": "http://www.graze.com",
"role": "Development Team"
}
],
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"squizlabs/php_codesniffer": "^2.5",
"graze/standards": "^1.0",
"akamon/mockery-callable-mock": "^1.0",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"Graze\\CsvToken\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Graze\\CsvToken\\Test\\": "tests/src",
"Graze\\CsvToken\\Test\\Unit\\": "tests/unit",
"Graze\\CsvToken\\Test\\Integration\\": "tests/integration"
}
}
}