-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.05 KB
/
composer.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"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"
}
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-redis": "*",
"utopia-php/framework": "0.28.*",
"utopia-php/cli": "0.15.*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^1.9",
"laravel/pint": "1.2.*"
},
"scripts": {
"format": "vendor/bin/pint",
"lint": "vendor/bin/pint --test",
"test": "docker-compose up -d && sleep 10 && docker-compose exec web vendor/bin/phpunit --configuration phpunit.xml",
"check": "./vendor/bin/phpstan analyse --level 0 src tests"
}
}