-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.08 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "crazycodr/roman",
"description": "Provides a simple decimal/roman number converter",
"type": "library",
"keywords": [
"roman",
"convert",
"format"
],
"license": "MIT",
"support": {
"issues": "https://github.com/crazycodr/csv/issues"
},
"authors": [
{
"name": "Mathieu Dumoulin",
"email": "thecrazycodr@gmail.com"
}
],
"autoload": {
"psr-4": {
"CrazyCodr\\Converters\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CrazyCodr\\Converters\\Test\\": "test"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.11",
"phpunit/phpunit": "^7.1",
"league/csv": "^8.0"
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": [
"php-cs-fixer fix -v --diff --dry-run src",
"php-cs-fixer fix -v --diff --dry-run test"
],
"fix": [
"php-cs-fixer fix -v --diff src",
"php-cs-fixer fix -v --diff test"
]
}
}