-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.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
{
"name": "crazko/post-social-image",
"description": "Creates images suitable for social sharing",
"homepage": "https://github.com/crazko/post-social-image",
"support": {
"issues": "https://github.com/crazko/post-social-image/issues"
},
"keywords": ["image", "social", "open graph"],
"license": "MIT",
"bin": [
"bin/create-image"
],
"authors": [
{
"name": "Roman Vesely",
"email": "info@romanvesely.com",
"homepage": "https://romanvesely.com"
}
],
"scripts": {
"test": [
"@ecs",
"@phpstan",
"@tester"
],
"ecs": "vendor/bin/ecs check --ansi src",
"fix": "vendor/bin/ecs check --fix src",
"phpstan": "vendor/bin/phpstan analyse -l 7 --ansi src",
"tester": "vendor/bin/tester tests",
"image": "bin/create-image --ansi -b E6FAFF -f 1E9682 -c E1738A -o example.com ./docs"
},
"require": {
"php": "^7.1",
"nette/utils": "^2.5",
"symfony/console": "^4.2"
},
"require-dev": {
"phpstan/phpstan": "^0.11.1",
"symplify/easy-coding-standard": "^5.4",
"nette/tester": "^2.2"
},
"autoload": {
"psr-4": {
"Crazko\\PostSocialImage\\": "src"
}
}
}