-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·37 lines (37 loc) · 1.04 KB
/
composer.json
File metadata and controls
executable file
·37 lines (37 loc) · 1.04 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
{
"name": "utopia-php/tests",
"description": "Lite & fast micro PHP test framework that is **easy to use**.",
"type": "library",
"keywords": ["php","framework", "upf", "utopia", "tests"],
"license": "MIT",
"minimum-stability": "stable",
"scripts": {
"lint": "./vendor/bin/pint --test --config pint.json",
"format": "./vendor/bin/pint --config pint.json",
"check": "./vendor/bin/phpstan analyse --level 8 -c phpstan.neon src tests",
"test": "./vendor/bin/phpunit --configuration phpunit.xml"
},
"authors": [
{
"name": "Eldad Fux",
"email": "eldad@appwrite.io"
}
],
"autoload": {
"psr-4": {"Utopia\\Tests\\": "src/Tests"}
},
"require": {
"php": ">=8.3"
},
"require-dev": {
"phpstan/phpstan": "2.0.*",
"phpunit/phpunit": "12.4.*",
"laravel/pint": "1.25.*"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
}
}
}