-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.32 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.32 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
{
"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/cli": "0.22.0",
"utopia-php/framework": "0.34.*",
"utopia-php/queue": "0.14.*",
"utopia-php/validators": "0.1.*"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"laravel/pint": "1.*",
"phpstan/phpstan": "2.*"
},
"scripts": {
"format": "vendor/bin/pint",
"lint": "vendor/bin/pint --test",
"check": "vendor/bin/phpstan analyse --level 8 src tests --memory-limit=4G",
"test": "docker-compose up -d && sleep 10 && docker-compose exec web vendor/bin/phpunit --configuration phpunit.xml"
},
"config": {
"platform": {
"php": "8.0"
},
"allow-plugins": {
"php-http/discovery": false,
"tbachert/spi": false
}
}
}