-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.12 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
{
"name": "compolomus/rssreader",
"description": "Small library for obtaining RSS feed with caching.",
"license": "MIT",
"keywords": [
"rss",
"crawler",
"cache"
],
"type": "library",
"authors": [
{
"name": "Koenig",
"homepage": "https://github.com/Compolomus",
"email": "[email protected]"
},
{
"name": "EvilFreelancer",
"homepage": "https://github.com/EvilFreelancer",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Compolomus\\RssReader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Compolomus\\RssReader\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-simplexml": "*",
"ext-libxml": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"laminas/laminas-coding-standard": "^1.0",
"larapack/dd": "^1.1",
"symfony/dotenv": "^6.1"
},
"suggest": {
"ext-pdo": "*",
"ext-xdebug": "^3.0"
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --coverage-text --coverage-clover clover.xml"
},
"minimum-stability": "stable"
}