-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.71 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.71 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "fusio/impl",
"description": "Fusio implementation",
"homepage": "https://www.fusio-project.org",
"license": "Apache-2.0",
"authors": [
{
"name": "Christoph Kappestein",
"email": "christoph.kappestein@gmail.com",
"homepage": "https://chrisk.app"
}
],
"require": {
"php": ">=8.1",
"psx/framework": "^8.0",
"psx/openssl": "^2.0",
"psx/cloudevents": "^1.0",
"fusio/cli": "^4.0",
"fusio/model": "^4.0",
"fusio/engine": "^6.0",
"fusio/adapter-ai": "^0.1",
"fusio/adapter-amqp": "^6.0",
"fusio/adapter-beanstalk": "^6.0",
"fusio/adapter-cli": "^6.0",
"fusio/adapter-fcgi": "^6.0",
"fusio/adapter-file": "^6.0",
"fusio/adapter-graphql": "^6.0",
"fusio/adapter-http": "^6.0",
"fusio/adapter-php": "^6.0",
"fusio/adapter-redis": "^6.0",
"fusio/adapter-sdkfabric": "^0.2",
"fusio/adapter-smtp": "^6.0",
"fusio/adapter-soap": "^6.0",
"fusio/adapter-sql": "^6.0",
"fusio/adapter-stripe": "^6.0",
"fusio/adapter-util": "^6.0",
"fusio/adapter-worker": "^0.2",
"fusio/marketplace": "^0.2",
"firebase/php-jwt": "^7.0",
"symfony/filesystem": "^6.0|^7.0",
"symfony/mailer": "^6.0|^7.0",
"symfony/doctrine-messenger": "^6.0|^7.0",
"dragonmantank/cron-expression": "^3.3",
"phpstan/phpdoc-parser": "^1.0|^2.0",
"webonyx/graphql-php": "^15.24",
"mcp/sdk": "^0.3"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
"Fusio\\Impl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fusio\\Impl\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}