forked from shiflett/favicon
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
46 lines (46 loc) · 978 Bytes
/
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
{
"name": "arthurhoaro/favicon",
"type": "library",
"description": "PHP Library used to discover favicon from given URL",
"keywords": [
"favicon",
"icon",
"finder"
],
"homepage": "https://github.com/ArthurHoaro/favicon",
"license": "Apache-2.0",
"authors": [
{
"name": "Chris Shiflett",
"homepage": "http://shiflett.org/"
},
{
"name": "Arthur Hoaro",
"homepage": "http://hoa.ro"
}
],
"support": {
"issues": "https://github.com/ArthurHoaro/favicon/issues",
"sources": "https://github.com/ArthurHoaro/favicon"
},
"require": {
"php": "^8.0",
"ext-dom": "*",
"ext-fileinfo": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"weew/helpers-filesystem": "~1.0",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Favicon\\": "src/Favicon/"
}
},
"scripts": {
"test": "phpunit tests",
"cs": "phpcs",
"csfix": "phpcbf"
}
}