-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.52 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "joellarson/csvtool",
"type": "project",
"license": "UNLICENSED",
"authors": [
{
"name": "Joel Larson",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev",
"repositories": [
{
"type": "package",
"package": {
"name": "broadnetengineering/textfiles",
"version": "master",
"dist": {
"url": "https://github.com/BroadnetEngineering/TextFiles/archive/master.zip",
"type": "zip"
},
"source": {
"url": "[email protected]:BroadnetEngineering/TextFiles.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": "^7.2",
"broadnetengineering/textfiles": "master"
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"CSVTool\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"lint": "phpcs --standard=PSR1,PSR2,PSR12 ./src ./tests",
"lint-fix": "phpcbf --standard=PSR1,PSR2,PSR12 ./src ./tests"
}
}