-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.11 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
39
40
41
{
"name": "php-vibe-reader/reader",
"description": "A PHP-based RSS reading platform similar to Google Reader",
"version": "1.1.1",
"type": "project",
"require": {
"php": ">=8.0",
"ext-pdo": "*",
"ext-pdo_pgsql": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"monolog/monolog": "^3.0",
"ezyang/htmlpurifier": "^4.16"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.48"
},
"autoload": {
"psr-4": {
"PhpRss\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpRss\\Tests\\": "tests/"
}
},
"scripts": {
"setup": "php scripts/setup.php",
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"analyse": "phpstan analyse",
"analyse-baseline": "phpstan analyse --generate-baseline",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix"
}
}