-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 998 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 998 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
36
37
{
"name": "bowphp/gravatar",
"description": "A Bow Framework Gravatar package for retrieving gravatar image URLs or checking the existance of an image.",
"keywords": [
"bowphp",
"gravatar",
"avatar"
],
"license": "MIT",
"authors": [
{
"name": "Franck",
"email": "dakiafranck@gmail.com",
"homepage": "https://papac.dev",
"role": "Developer"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"php": ">=7.4",
"squizlabs/php_codesniffer": "3.*",
"bowphp/framework": "^5"
},
"autoload": {
"psr-4": {
"Bow\\Gravatar\\": "src/"
}
},
"scripts": {
"phpcbf": "phpcbf --standard=psr12 --severity=4 --tab-width=4 src",
"phpcs": "phpcs --standard=psr12 --severity=4 --tab-width=4 src",
"test": "phpunit --configuration phpunit.dist.xml"
},
"minimum-stability": "stable"
}