-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
35 lines (35 loc) · 983 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/platform",
"description": "Light and Fast Platform Library",
"type": "library",
"keywords": ["php","framework", "upf", "utopia", "platform"],
"license": "MIT",
"minimum-stability": "stable",
"autoload": {
"psr-4": {"Utopia\\Platform\\": "src/Platform"}
},
"autoload-dev": {
"psr-4": {
"Utopia\\Tests\\": "tests/Platform",
"Utopia\\Unit\\": "tests/unit"
}
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-redis": "*",
"utopia-php/servers": "0.1.*",
"utopia-php/framework": "1.0.*",
"utopia-php/cli": "0.19.*",
"utopia-php/queue": "0.8.*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"laravel/pint": "1.2.*"
},
"scripts": {
"format": "vendor/bin/pint",
"lint": "vendor/bin/pint --test",
"test": "vendor/bin/phpunit --configuration phpunit.xml"
}
}