-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.32 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
{
"name": "getdkan/file-fetcher",
"license": "GPL-3.0-only",
"type": "library",
"authors": [
{
"name": "fmizzell",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4 <8.4",
"ext-curl": "*",
"getdkan/procrastinator": "^5.0.3",
"guzzlehttp/guzzle": "^6.5.8 || ^7.4.5"
},
"require-dev": {
"getdkan/contracts": "^1.2",
"getdkan/mock-chain": "^1.3.6",
"mikey179/vfsstream": "^1.6.11",
"phpunit/phpunit": "^9.6",
"rector/rector": "^1@stable",
"squizlabs/php_codesniffer": "^3.7",
"symfony/phpunit-bridge": "^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"FileFetcher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FileFetcherTests\\": "test/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpcbf": "./vendor/bin/phpcbf -p",
"phpcs": "./vendor/bin/phpcs -ps",
"rector": "./vendor/bin/rector process",
"rector-dry-run": "./vendor/bin/rector process --dry-run",
"test": "./vendor/bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html ./coverage"
}
}