-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 807 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 807 Bytes
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
{
"name": "arthurhoaro/web-thumbnailer",
"description": "PHP library which will retrieve a thumbnail for any given URL",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Arthur Hoaro",
"homepage": "https://hoa.ro"
}
],
"require": {
"php": ">=7.1",
"phpunit/php-text-template": "^1.2 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0 || dev-master",
"php-coveralls/php-coveralls": "^2.0",
"squizlabs/php_codesniffer": "^3.0",
"gskema/phpcs-type-sniff": "^0.13.1",
"phpstan/phpstan": "^0.12.9"
},
"autoload": {
"psr-4": {
"WebThumbnailer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WebThumbnailer\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}