forked from utopia-php/system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 890 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 890 Bytes
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
{
"name": "utopia-php/system",
"description": "A simple library for obtaining information about the host's system.",
"type": "library",
"keywords": ["php","framework", "upf", "utopia", "system"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Eldad Fux",
"email": "eldad@appwrite.io"
},
{
"name": "Torsten Dittmann",
"email": "torsten@appwrite.io"
}
],
"autoload": {
"psr-4": {"Utopia\\System\\": "src/System"}
},
"scripts": {
"lint": "./vendor/bin/pint --test",
"format": "./vendor/bin/pint"
},
"require": {
"php": ">=7.4",
"laravel/pint": "1.2.*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "4.0.1",
"squizlabs/php_codesniffer": "^3.6"
}
}