-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.25 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.25 KB
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
45
46
47
48
49
{
"name": "appwrite/docker-geo",
"type": "project",
"require": {
"php": ">=8.3.0",
"utopia-php/fetch": "0.5.*",
"utopia-php/http": "0.34.*",
"utopia-php/platform": "0.10.*",
"utopia-php/di": "0.3.*",
"utopia-php/system": "^0.10.1",
"utopia-php/logger": "^0.7.1",
"utopia-php/dsn": "^0.2.1",
"utopia-php/cli": "0.23.*",
"utopia-php/console": "^0.1.1"
},
"autoload": {
"psr-4": {
"Appwrite\\Geo\\": "src/Geo"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"authors": [
{
"name": "Appwrite",
"email": "team@appwrite.io"
}
],
"require-dev": {
"phpunit/phpunit": "^13.0",
"laravel/pint": "^1.29",
"phpstan/phpstan": "^2.1"
},
"scripts": {
"lint": "./vendor/bin/pint --test --config pint.json",
"format": "./vendor/bin/pint --config pint.json",
"check": "./vendor/bin/phpstan analyse -c phpstan.neon",
"test:e2e": "./vendor/bin/phpunit --testsuite e2e"
},
"config": {
"allow-plugins": {
"php-http/discovery": false,
"tbachert/spi": false
}
}
}