mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-30 08:40:24 +03:00
d6beb713b5
* chore: update composer dependencies $ composer update Loading composer repositories with package information Updating dependencies Info from https://repo.packagist.org: #StandWithUkraine Lock file operations: 0 installs, 8 updates, 0 removals - Upgrading doctrine/instantiator (1.4.0 => 1.4.1) - Upgrading myclabs/deep-copy (1.10.2 => 1.11.0) - Upgrading phpdocumentor/reflection-docblock (5.2.2 => 5.3.0) - Upgrading phpdocumentor/type-resolver (1.4.0 => 1.6.1) - Upgrading phpspec/prophecy (1.13.0 => v1.15.0) - Upgrading phpunit/php-file-iterator (2.0.4 => 2.0.5) - Upgrading sebastian/exporter (3.1.3 => 3.1.4) - Upgrading symfony/polyfill-ctype (v1.23.0 => v1.25.0) Writing lock file Installing dependencies from lock file (including require-dev) Package operations: 0 installs, 8 updates, 0 removals - Upgrading symfony/polyfill-ctype (v1.23.0 => v1.25.0): Extracting archive - Upgrading phpdocumentor/type-resolver (1.4.0 => 1.6.1): Extracting archive - Upgrading phpdocumentor/reflection-docblock (5.2.2 => 5.3.0): Extracting archive - Upgrading sebastian/exporter (3.1.3 => 3.1.4): Extracting archive - Upgrading phpunit/php-file-iterator (2.0.4 => 2.0.5): Extracting archive - Upgrading doctrine/instantiator (1.4.0 => 1.4.1): Extracting archive - Upgrading phpspec/prophecy (1.13.0 => v1.15.0): Extracting archive - Upgrading myclabs/deep-copy (1.10.2 => 1.11.0): Extracting archive Package phpunit/php-token-stream is abandoned, you should avoid using it. No replacement was suggested. Generating autoload files 16 packages you are using are looking for funding. Use the `composer fund` command to find out more! * chore: add dev-dependency squizlabs/php_codesniffer (phpcs) $ composer require --dev squizlabs/php_codesniffer Info from https://repo.packagist.org: #StandWithUkraine Using version ^3.6 for squizlabs/php_codesniffer ./composer.json has been updated Running composer update squizlabs/php_codesniffer Loading composer repositories with package information Updating dependencies Info from https://repo.packagist.org: #StandWithUkraine Lock file operations: 1 install, 0 updates, 0 removals - Locking squizlabs/php_codesniffer (3.6.2) Writing lock file Installing dependencies from lock file (including require-dev) Package operations: 1 install, 0 updates, 0 removals - Installing squizlabs/php_codesniffer (3.6.2): Extracting archive Package phpunit/php-token-stream is abandoned, you should avoid using it. No replacement was suggested. Generating autoload files 16 packages you are using are looking for funding. Use the `composer fund` command to find out more! * chore: add package type => "project" in composer.json
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"name": "rss-bridge/rss-bridge",
|
|
"type": "project",
|
|
"description": "RSS-Bridge is a PHP project capable of generating RSS and Atom feeds for websites that don't have one. It can be used on webservers or as a stand-alone application in CLI mode.",
|
|
"keywords": [
|
|
"php",
|
|
"rss",
|
|
"bridge",
|
|
"rss-bridge",
|
|
"atom",
|
|
"html",
|
|
"json",
|
|
"feed",
|
|
"cli"
|
|
],
|
|
"homepage": "https://github.com/rss-bridge/rss-bridge/",
|
|
"license": "UNLICENSE",
|
|
"support": {
|
|
"issues": "https://github.com/rss-bridge/rss-bridge/issues/",
|
|
"docs": "https://rss-bridge.github.io/rss-bridge/",
|
|
"source": "https://github.com/rss-bridge/rss-bridge/",
|
|
"rss": "https://github.com/RSS-Bridge/rss-bridge/commits/master.atom"
|
|
},
|
|
"require": {
|
|
"php": ">=7.1",
|
|
"ext-mbstring": "*",
|
|
"ext-curl": "*",
|
|
"ext-openssl": "*",
|
|
"ext-libxml": "*",
|
|
"ext-simplexml": "*",
|
|
"ext-json": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7",
|
|
"squizlabs/php_codesniffer": "^3.6"
|
|
},
|
|
"suggest": {
|
|
"ext-memcached": "Allows to use memcached as cache type",
|
|
"ext-sqlite3": "Allows to use an SQLite database for caching",
|
|
"ext-dom": "Allows to use some bridges based on XPath expressions"
|
|
}
|
|
}
|