-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.69 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.69 KB
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
{
"name": "fusonic/opengraph",
"description": "PHP library for consuming and publishing Open Graph resources.",
"keywords": [
"opengraph"
],
"type": "library",
"homepage": "https://github.com/fusonic/opengraph",
"license": "MIT",
"authors": [
{
"name": "Fusonic",
"homepage": "https://www.fusonic.net"
}
],
"autoload": {
"psr-4": {
"Fusonic\\OpenGraph\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fusonic\\OpenGraph\\Test\\": "tests/"
}
},
"require": {
"php": "^8.1",
"ext-dom": "*",
"symfony/css-selector": "^5.4 || ^6.4 || ^7.1",
"symfony/dom-crawler": "^5.4 || ^6.4 || ^7.1",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65",
"nyholm/psr7": "^1.8",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^10.5 || ^11.4",
"symfony/http-client": "^5.4 || ^6.4 || ^7.1"
},
"suggest": {
"symfony/http-client": "^5.4 || ^6.4 || ^7.1",
"nyholm/psr7": "^1.8"
},
"scripts": {
"phpcs:check": "XDEBUG_MODE=off vendor/bin/php-cs-fixer check -v --diff",
"phpcs:fix": "XDEBUG_MODE=off vendor/bin/php-cs-fixer fix -v",
"phpstan": "XDEBUG_MODE=off php -d memory_limit=2048M vendor/bin/phpstan analyse",
"test": "XDEBUG_MODE=off vendor/bin/phpunit --testdox"
},
"config": {
"sort-packages": true
}
}