forked from parse-community/parse-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 871 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
{
"name": "parse/php-sdk",
"description": "Parse PHP SDK",
"keywords": ["parse", "sdk"],
"license": "BSD-3-Clause",
"type": "library",
"homepage": "https://github.com/parse-community/parse-php-sdk",
"authors": [
{
"name": "Parse",
"homepage": "https://github.com/parse-community/parse-php-sdk/graphs/contributors"
}
],
"require": {
"php": ">= 7.1",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "^3.0.1",
"phpdocumentor/phpdocumentor": "~2.9",
"jms/serializer": "1.7.1"
},
"autoload": {
"psr-4": {
"Parse\\": "src/Parse/"
}
},
"autoload-dev": {
"psr-4": {
"Parse\\Test\\": "tests/Parse/"
}
}
}