-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.02 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
{
"name": "abordage/og-images",
"description": "Generate Open Graph images (og:image, twitter:image, vk:image) for each site pages",
"license": "MIT",
"keywords": [
"og-image",
"open graph",
"opengraph",
"twitter image",
"vk image"
],
"authors": [
{
"name": "Pavel Bychko",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/abordage/og-images",
"require": {
"php": ">=7.4",
"ext-imagick": "*"
},
"require-dev": {
"ext-fileinfo": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.5"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Abordage\\OpenGraphImages\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Abordage\\OpenGraphImages\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpcsf": "vendor/bin/php-cs-fixer fix --diff",
"phpstan:generate-baseline": "vendor/bin/phpstan --generate-baseline",
"test:all": [
"@test:phpcsf",
"@test:phpstan",
"@test:phpunit"
],
"test:phpcsf": "vendor/bin/php-cs-fixer fix --dry-run",
"test:phpstan": "vendor/bin/phpstan analyse",
"test:phpunit": "vendor/bin/phpunit --colors=always",
"test:phpunit-coverage": "vendor/bin/phpunit --coverage-clover build/coverage.xml"
},
"scripts-descriptions": {
"phpcsf": "Run PHP-CS-Fixer fix",
"phpstan:generate-baseline": "Generate baseline for PHPStan",
"test:all": "Run all code analysis and tests",
"test:phpcsf": "Run PHP-CS-Fixer test",
"test:phpstan": "Run PHPStan",
"test:phpunit": "Run PHPUnit",
"test:phpunit-coverage": "Run PHPUnit with coverage"
}
}