-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 930 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": "utopia-php/servers",
"description": "A base library for building Utopia style servers.",
"type": "library",
"keywords": ["php","framework", "upf", "utopia", "servers"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Team Appwrite",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"Utopia\\Servers\\": "src/Servers"}
},
"autoload-dev": {
"psr-4": {"Tests\\E2E\\": "tests/Servers/Unit"}
},
"scripts":{
"test": "phpunit",
"analyse": "vendor/bin/phpstan analyse",
"format": "vendor/bin/pint",
"lint": "vendor/bin/pint --test"
},
"require": {
"php": ">=8.0",
"utopia-php/di": "0.1.*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.5",
"laravel/pint": "^0.2.3",
"phpstan/phpstan": "^1.8"
}
}