-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
composer: Add all details to the composer file
The composer file currently lacks a lot of details, especially the "name" and "description", but also "require-dev" and "suggest" info. This commit adds many more details to the composer file and updates composer.lock for this repository. Technically the project is ready to be shipped as composer package.
- Loading branch information
1 parent
f2346fb
commit c334df9
Showing
2 changed files
with
1,507 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,39 @@ | ||
{ | ||
"name": "rss-bridge/rss-bridge", | ||
"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/", | ||
"wiki": "https://github.com/rss-bridge/rss-bridge/wiki/", | ||
"source": "https://github.com/rss-bridge/rss-bridge/", | ||
"rss": "https://github.com/RSS-Bridge/rss-bridge/commits/master.atom" | ||
}, | ||
"require": { | ||
"php": ">=5.6", | ||
"ext-mbstring": "*", | ||
"ext-sqlite3": "*", | ||
"ext-curl": "*", | ||
"ext-openssl": "*", | ||
"ext-libxml": "*", | ||
"ext-simplexml": "*", | ||
"ext-json": "*" | ||
"php": ">=5.6", | ||
"ext-mbstring": "*", | ||
"ext-curl": "*", | ||
"ext-openssl": "*", | ||
"ext-libxml": "*", | ||
"ext-simplexml": "*", | ||
"ext-json": "*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^6 || ^7" | ||
}, | ||
"suggest": { | ||
"ext-memcached": "Allows to use memcached as cache type", | ||
"ext-sqlite3": "Allows to use an SQLite database for caching" | ||
} | ||
} |
Oops, something went wrong.