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