summaryrefslogtreecommitdiff
path: root/tests/plugins/grpc/php_server/composer.json
blob: b6303291e0ff446f7715cc900f8388839f3127b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
    "name": "app/example-grpc-server",
    "description": "Example GRPC Server",
    "repositories": [
        {
            "type": "path",
            "url": "../.."
        }
    ],
    "require": {
        "spiral/php-grpc": "*"
    },
    "require-dev": {
        "grpc/grpc": "^1.36"
    },
    "autoload": {
        "psr-4": {
            "": "src"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}