aboutsummaryrefslogtreecommitdiff
path: root/composer.json
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-10-24 00:14:12 +0200
committerGravatar GitHub <noreply@github.com> 2021-10-24 00:14:12 +0200
commit9ca49408e06eb6ca797a4aae1a3f2fe5919930a8 (patch)
treed2ee287aab3aee0c61cec9671f57c53a6b786956 /composer.json
parentda4f0dea1fe8af7d8e81381ed60ff3cc61243884 (diff)
GitHub Action automatic tests (#3920)
* PHP lint + phpunit + Manipulate translations + phpcs * eslint + markdownlint + rtlcss + stylelint * shellcheck + shfmt + hadolint
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 000000000..c39915caf
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,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"
+ ]
+ }
+}