-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 2.63 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "abordage/laravel-og-images",
"description": "Generate Open Graph images (og:image, twitter:image, vk:image) for each site pages",
"license": "MIT",
"keywords": [
"laravel-og-images",
"og-image",
"open graph",
"opengraph",
"twitter image",
"vk image"
],
"authors": [
{
"name": "Pavel Bychko",
"email": "abordage.dev@gmail.com",
"role": "Developer"
}
],
"homepage": "https://github.com/abordage/laravel-og-images",
"require": {
"php": ">=7.4",
"ext-imagick": "*",
"abordage/og-images": "^0.4.1",
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"ext-fileinfo": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"mikey179/vfsstream": "^1.6",
"nunomaduro/collision": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"nunomaduro/larastan": "^1.0 || ^2.0",
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^9.6 || ^10.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Abordage\\LaravelOpenGraphImages\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Abordage\\LaravelOpenGraphImages\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"aliases": {
"OpenGraphImages": "Abordage\\LaravelOpenGraphImages\\Facades\\OpenGraphImages"
},
"providers": [
"Abordage\\LaravelOpenGraphImages\\OpenGraphImagesServiceProvider"
]
}
},
"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"
}
}