-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.02 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "ricardofiorani/oembed",
"description": "OEmbed is a PHP library to assist you retrieving data from providers that supports OEmbed.",
"license": "MIT",
"authors": [
{
"name": "Ricardo Fiorani",
"email": "ricardo.fiorani@gmail.com"
}
],
"require": {
"php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
"ext-json": "*",
"php-http/discovery": "^1.7",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.9",
"infection/infection": "^0.29",
"php-http/guzzle7-adapter": "^1.1",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"RicardoFiorani\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RicardoFioraniTests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"infection/extension-installer": true
},
"sort-packages": true
}
}