| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "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.2",
- "ext-ctype": "*",
- "ext-curl": "*",
- "ext-dom": "*",
- "ext-fileinfo": "*",
- "ext-gmp": "*",
- "ext-intl": "*",
- "ext-json": "*",
- "ext-libxml": "*",
- "ext-mbstring": "*",
- "ext-openssl": "*",
- "ext-pcre": "*",
- "ext-pdo": "*",
- "ext-pdo_sqlite": "*",
- "ext-session": "*",
- "ext-simplexml": "*",
- "ext-xml": "*",
- "ext-xmlreader": "*",
- "ext-zend-opcache": "*",
- "ext-zip": "*",
- "ext-zlib": "*"
- },
- "suggest": {
- "ext-iconv": "*",
- "ext-pdo_mysql": "*",
- "ext-pdo_pgsql": "*"
- },
- "require-dev": {
- "php": ">=8.0",
- "ext-phar": "*",
- "ext-tokenizer": "*",
- "ext-xmlwriter": "*",
- "phpstan/phpstan": "~1.10.14",
- "phpstan/phpstan-phpunit": "^1.3",
- "phpunit/phpunit": "^9",
- "squizlabs/php_codesniffer": "^3.7"
- },
- "scripts": {
- "php-lint": "find . -type d -name 'vendor' -prune -o -name '*.php' -print0 | xargs -0 -n1 -P4 php -l 1>/dev/null",
- "phtml-lint": "find . -type d -name 'vendor' -prune -o -name '*.phtml' -print0 | xargs -0 -n1 -P4 php -l 1>/dev/null",
- "phpcs": "phpcs . -s",
- "phpcbf": "phpcbf . -p -s",
- "phpstan": "phpstan analyse --memory-limit 512M .",
- "phpstan-next": "phpstan analyse --level 7 --memory-limit 512M $(find . -type d -name 'vendor' -prune -o -name '*.php' -o -name '*.phtml' | grep -Fxvf ./tests/phpstan-next.txt | sort | paste -s)",
- "phpunit": "phpunit --bootstrap ./tests/bootstrap.php --verbose ./tests",
- "translations": "cli/manipulate.translation.php -a format",
- "test": [
- "@php-lint",
- "@phtml-lint",
- "@phpunit",
- "@phpcs",
- "@phpstan",
- "@phpstan-next"
- ],
- "fix": [
- "@translations",
- "@phpcbf"
- ]
- },
- "config": {
- "allow-plugins": {
- "phpstan/extension-installer": false
- }
- }
- }
|