-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.21 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": "utopia-php/migration",
"description": "A simple library to migrate resources between services.",
"type": "library",
"keywords": ["php", "framework", "upf", "utopia", "migration"],
"license": "MIT",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Utopia\\Migration\\": "src/Migration"
}
},
"autoload-dev": {
"psr-4": {
"Utopia\\Tests\\": "tests/Migration"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"lint": "./vendor/bin/pint --test",
"format": "./vendor/bin/pint",
"check": "./vendor/bin/phpstan analyse --level=8 --memory-limit 512M"
},
"require": {
"php": "8.3.*",
"ext-curl": "*",
"ext-openssl": "*",
"appwrite/appwrite": "11.1.*",
"utopia-php/database": "0.55.*",
"utopia-php/storage": "0.19.*",
"utopia-php/dsn": "0.2.*"
},
"require-dev": {
"ext-pdo": "*",
"phpunit/phpunit": "11.2.*",
"vlucas/phpdotenv": "5.6.*",
"laravel/pint": "1.17.*",
"phpstan/phpstan": "1.11.*",
"utopia-php/cli": "0.19.*"
},
"platform": {
"php": "8.3"
}
}