forked from parse-community/parse-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.02 KB
/
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
38
39
40
41
42
{
"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": ">=8.1 <8.3",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "10.1.1",
"squizlabs/php_codesniffer": "3.7.2",
"phpdocumentor/phpdocumentor": "3.0.0",
"jms/serializer": "1.7.1",
"nikic/php-parser": "4.15"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Parse\\": "src/Parse/"
}
},
"autoload-dev": {
"psr-4": {
"Parse\\Test\\": "tests/Parse/"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}