summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: c05d2c2abe7e7d1409ec9d4e59b1aa0381811d8d (plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
    "name": "phalcon/zephir",
    "description": "Zephir is a compiled high level language aimed to the creation of C-extensions for PHP",
    "keywords": [
        "extension",
        "zephir",
        "phalcon",
        "internals"
    ],
    "homepage": "https://zephir-lang.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Zephir Team",
            "email": "team@zephir-lang.com",
            "homepage": "https://zephir-lang.com"
        },
        {
            "name": "Contributors",
            "homepage": "https://github.com/phalcon/zephir/graphs/contributors"
        }
    ],
    "require": {
        "php": ">=7.0.0 <8.0",
        "ext-SPL": "*",
        "ext-ctype": "*",
        "ext-hash": "*",
        "ext-json": "*",
        "ext-mbstring": "*",
        "ext-pcre": "*",
        "ext-xml": "*",
        "oneup/flysystem-bundle": "^1.14 || ^3.0",
        "symfony/cache": "3.4.*",
        "symfony/config": "3.4.*",
        "symfony/console": "3.4.*",
        "symfony/dependency-injection": "3.4.*",
        "symfony/event-dispatcher": "3.4.*",
        "symfony/filesystem": "3.4.*",
        "symfony/finder": "3.4.*",
        "symfony/framework-bundle": "3.4.*",
        "symfony/http-kernel": "3.4.*",
        "symfony/monolog-bridge": "3.4.*",
        "symfony/monolog-bundle": "3.3.*",
        "symfony/routing": "3.4.*",
        "symfony/yaml": "3.4.*"
    },
    "require-dev": {
        "ext-gmp": "*",
        "ext-pdo": "*",
        "ext-pdo_sqlite": "*",
        "ext-zip": "*",
        "psr/log": "1.1.*",
        "symfony/debug": "3.4.*",
        "symfony/phpunit-bridge": "4.1.*"
    },
    "config": {
        "optimize-autoloader": true,
        "platform": {},
        "preferred-install": "dist",
        "sort-packages": true
    },
    "autoload": {
        "psr-4": {
            "Zephir\\": "Library"
        },
        "files": [
            "Library/functions.php"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "Zephir\\Test\\": "unit-tests/Zephir/Test/",
            "Extension\\": "unit-tests/Extension/"
        },
        "classmap": [
            "unit-tests/fixtures/mocks/"
        ]
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "bin": [
        "zephir"
    ],
    "support": {
        "issues": "https://github.com/phalcon/zephir/issues?state=open",
        "forum": "https://forum.zephir-lang.com",
        "source": "https://github.com/phalcon/zephir",
        "docs": "https://docs.zephir-lang.com"
    }
}