aboutsummaryrefslogtreecommitdiff
path: root/composer.json
blob: c39915caf3e06b51efc0981ad7049a3a8a5012a9 (plain)
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
{
    "name": "freshrss.org/freshrss",
    "description": "A free, self-hostable aggregator",
    "type": "project",
    "homepage": "https://freshrss.org/",
    "license": "AGPL-3.0",
    "support": {
        "docs": "https://freshrss.github.io/FreshRSS/",
        "issues": "https://github.com/FreshRSS/FreshRSS/issues",
        "source": "https://github.com/FreshRSS/FreshRSS/"
    },
    "keywords": [
        "news",
        "aggregator",
        "RSS",
        "Atom",
        "WebSub"
    ],
    "require": {
        "php": ">=7.0.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^9",
        "squizlabs/php_codesniffer": "^3.6"
    },
    "scripts": {
        "phpcs": "phpcs . -p -s",
        "phpcbf": "phpcbf . -p -s",
        "phpunit": "phpunit --bootstrap ./tests/bootstrap.php --verbose ./tests",
        "test": [
            "@phpunit",
            "@phpcs"
        ],
        "fix": [
            "@phpcbf"
        ]
    }
}