-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
29 lines (29 loc) · 939 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
{
"name": "giftcards/fixed-width",
"description": "Library for working with fixed width files as well as their associated specs",
"license": "MIT",
"autoload": {
"psr-0": {
"Giftcards\\FixedWidth": "src/"
}
},
"require": {
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"mockery/mockery": "^1.2",
"fzaninotto/faker" : "^1.8",
"symfony/yaml": "^3.4",
"symfony/config": "^3.4",
"symfony/options-resolver": "^3.4",
"symfony/stopwatch": "^3.4"
},
"target-dir": "src/Giftcards/FixedWidth",
"keywords": ["fixed width", "batch file","fixed width file","fixed width spec", "fixed width file spec", "batch file spec"],
"suggest": {
"symfony/options-resolver": "spec file loading",
"symfony/config": "spec file loading",
"symfony/yaml": "yaml spec file loading"
}
}