-
-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 763 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 763 Bytes
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
{
"name": "dg/rss-php",
"description": "RSS & Atom Feeds for PHP is a very small and easy-to-use library for consuming an RSS and Atom feed",
"keywords": ["rss", "atom", "feed"],
"homepage": "https://github.com/dg/rss-php",
"license": ["BSD-3-Clause"],
"authors": [
{
"name": "David Grudl",
"homepage": "https://davidgrudl.com"
}
],
"require": {
"php": ">=8.2",
"ext-simplexml": "*"
},
"require-dev": {
"nette/tester": "^2.6",
"phpstan/phpstan": "^2.1",
"phpstan/extension-installer": "^1.4",
"nette/phpstan-rules": "^1.0"
},
"autoload": {
"classmap": ["src/"]
},
"scripts": {
"phpstan": "phpstan analyse",
"tester": "tester tests -s"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}