-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
37 lines (37 loc) · 856 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
37
{
"name": "dirkgroenen/pinterest-api-php",
"description": "PHP Wrapper for the official Pinterest API",
"authors": [
{
"name": "Dirk Groenen",
"email": "[email protected]",
"homepage": "http://dirkgroenen.nl",
"role": "Creator/Developer"
}
],
"license": "Apache-2.0",
"type": "library",
"keywords": [
"api",
"wrapper",
"pinterest"
],
"require": {
"php": ">=5.4",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "8.5.*",
"vlucas/phpdotenv": "^2.2"
},
"autoload": {
"psr-4": {
"DirkGroenen\\Pinterest\\": "src/Pinterest"
}
},
"autoload-dev": {
"psr-4": {
"DirkGroenen\\Pinterest\\Tests\\": "tests/Pinterest"
}
}
}