-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
composer.json
74 lines (74 loc) · 2.31 KB
/
composer.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "j0k3r/graby",
"description": "Graby helps you extract article content from web pages",
"type": "library",
"license": "MIT",
"authors": [{
"name": "Jeremy Benoist",
"email": "jeremy.benoist@gmail.com",
"role": "Developer"
},{
"name": "FiveFilters.org",
"email": "fivefilters@fivefilters.org",
"role": "Developer (original version)"
}],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-tidy": "*",
"fossar/htmlawed": "^1.3.3",
"guzzlehttp/psr7": "^2.0",
"j0k3r/graby-site-config": "^1.0.181",
"j0k3r/httplug-ssrf-plugin": "^2.0",
"j0k3r/php-readability": "^1.2.9",
"monolog/monolog": "^1.18.0|^2.3",
"php-http/client-common": "^2.7",
"php-http/discovery": "^1.19",
"php-http/httplug": "^2.4",
"php-http/message": "^1.14",
"psr/http-client-implementation": "^1.0",
"simplepie/simplepie": "^1.8",
"smalot/pdfparser": "^2.8",
"symfony/options-resolver": "^3.4|^4.4|^5.3|^6.4|^7.0",
"symfony/polyfill-intl-idn": "^1.26",
"symfony/polyfill-php80": "^1.27"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"guzzlehttp/guzzle": "^7.4",
"php-http/guzzle7-adapter": "^1.0",
"php-http/mock-client": "^1.4",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"rector/rector": "^0.12.11",
"symfony/phpunit-bridge": "^7.0.1"
},
"autoload": {
"psr-4": {
"Graby\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Maintenance\\Graby\\": "maintenance/",
"Tests\\Graby\\": "tests/"
}
},
"scripts": {
"fix": "php-cs-fixer fix --verbose --diff",
"phpstan": "phpstan analyse --memory-limit 512M",
"rector": "vendor/bin/rector process -c maintenance/rector.php",
"test": "simple-phpunit -v"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true
}
}
}