-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
36 lines (36 loc) · 858 Bytes
/
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
{
"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": "^7.4 || ^8.0 || ^8.1",
"psr/http-message": "^1.0",
"php-http/discovery": "^1.7",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
"ext-json": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^8.4",
"php-http/guzzle6-adapter": "^2",
"http-interop/http-factory-guzzle": "^1.0",
"phpstan/phpstan": "^0.12.82"
},
"autoload": {
"psr-4": {
"RicardoFiorani\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RicardoFioraniTests\\": "tests/"
}
}
}