-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
43 lines (43 loc) · 1.05 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
{
"name": "astrotomic/php-open-graph",
"description": "Easily generate Open Graph tags",
"license": "MIT",
"keywords": [
"open-graph"
],
"authors": [
{
"name": "Tom Witkowski",
"email": "gummibeer@astrotomic.info",
"homepage": "https://astrotomic.info",
"role": "Developer"
}
],
"homepage": "https://github.com/Astrotomic/php-open-graph",
"require": {
"php": "^8.1",
"astrotomic/php-conditional-proxy": "^0.2.1"
},
"require-dev": {
"laravel/pint": "^1.13",
"pestphp/pest": "^2.21",
"spatie/pest-plugin-snapshots": "^2.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Astrotomic\\OpenGraph\\": "src"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"fix": "@php vendor/bin/pint",
"test": "@php vendor/bin/pest"
}
}