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
|
{
"name": "mauricesvay/moonmoon",
"description": "Moonmoon is a simple feed aggregator.",
"homepage": "http://moonmoon.org/",
"type": "project",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Maurice Svay",
"email": "maurice@svay.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.2 || ^7.3 || ^7.4 || ^8.1 || ^8.2",
"mustangostang/spyc": "^0.6.3",
"simplepie/simplepie": "^1.5",
"paragonie/random_compat": "^9.99"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.3",
"phpmd/phpmd": "^2.11",
"php-parallel-lint/php-parallel-lint": "^1.3",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"test": ""
},
"autoload": {
"psr-0": {
"": "app/classes/"
},
"files": [
"app/helpers.php"
]
}
}
|