-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 937 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
{
"name": "giberti/ext-oauth-shim",
"description": "An implementation of the pecl OAuth extension in PHP for shared hosts that don't provide it",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Erik Giberti",
"homepage": "https://github.com/giberti"
}
],
"require": {
"ext-curl": "*",
"php": "^7.3 || ^8.0"
},
"require-dev": {
"giberti/phpunit-local-server": "^3.0",
"phpunit/phpunit": "^8.0 || ^9.0"
},
"suggest": {
"ext-oauth": "You should use the pecl OAuth extension, install with `pecl install oauth`",
"ext-openssl": "Required to use the OAUTH_SIG_METHOD_RSASHA1 signing method"
},
"provide": {
"ext-oauth": "*"
},
"autoload": {
"files": [
"src/classes.php",
"src/constants.php",
"src/functions.php"
]
}
}