-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.37 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
{
"name": "webignition/website-rss-feed-finder",
"description": "Find the RSS feed from a given website base URL",
"keywords": ["RSS"],
"homepage": "https://github.com/webignition/website-rss-feed-finder",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jon Cram",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"webignition\\WebsiteRssFeedFinder\\": "src/",
"webignition\\WebsiteRssFeedFinder\\Tests\\": "tests/"
}
},
"scripts": {
"cs": "./vendor/bin/phpcs src tests --colors --standard=PSR2",
"static-analysis": "./vendor/bin/phpstan analyse src tests --level=7",
"test": "./vendor/bin/phpunit --colors=always",
"ci": [
"@composer cs",
"@composer static-analysis",
"@composer test"
]
},
"require": {
"php": ">=7.2.0",
"webignition/internet-media-type":">=2,<3",
"guzzlehttp/guzzle":"~6",
"webignition/web-resource-retriever":">=1,<2",
"webignition/uri": "^0.4.0",
"webignition/absolute-url-deriver": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "^3",
"phpstan/phpstan": "^0.11.5"
},
"minimum-stability":"dev",
"prefer-stable":true
}