-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 991 Bytes
/
composer.json
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": "fusio/cli",
"description": "Fusio CLI",
"homepage": "https://www.fusio-project.org",
"license": "Apache-2.0",
"authors": [
{
"name": "Christoph Kappestein",
"email": "[email protected]",
"homepage": "https://chrisk.app/"
}
],
"scripts": {
"tests": "@php vendor/phpunit/phpunit/phpunit --configuration phpunit.xml tests",
"psalm": "@php vendor/vimeo/psalm/psalm"
},
"require": {
"php": ">=8.1",
"psr/log": "^1.0|^2.0|^3.0",
"fusio/model": "^4.0",
"psx/schema": "^7.0",
"psx/http": "^4.0",
"guzzlehttp/guzzle": "^7.0",
"symfony/console": "^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^5.0|^6.0|^7.0",
"symfony/yaml": "^5.0|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"Fusio\\Cli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fusio\\Cli\\Tests\\": "tests/"
}
}
}