-
Notifications
You must be signed in to change notification settings - Fork 171
/
composer.json
44 lines (44 loc) · 1.08 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
43
44
{
"name": "appwrite/sdk-generator",
"description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Eldad Fux",
"email": "[email protected]"
}
],
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/phpcs",
"format": "vendor/bin/phpcbf"
},
"autoload": {
"psr-4": {
"Appwrite\\SDK\\": "src/SDK",
"Appwrite\\Spec\\": "src/Spec"
}
},
"autoload-dev": {
"psr-4": {"Tests\\": "tests"}
},
"require": {
"php": ">=8.3",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-json": "*",
"twig/twig": "3.14.*",
"matthiasmullie/minify": "1.3.*"
},
"require-dev": {
"phpunit/phpunit": "11.*",
"brianium/paratest": "7.*",
"squizlabs/php_codesniffer": "3.*"
},
"platform": {
"php": "8.2"
}
}