summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: f5cca486ad1d525b3999c10a4ca3e4bdc5174859 (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
{
    "name": "php/pie",
    "type": "project",
    "description": "PIE - the PHP Installer for Extensions",
    "license": "BSD-3-Clause",
    "bin": ["bin/pie"],
    "autoload": {
        "psr-4": {
            "Php\\Pie\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Php\\PieIntegrationTest\\": "test/integration/",
            "Php\\PieUnitTest\\": "test/unit/",
            "Php\\PieBehaviourTest\\": "test/behaviour/"
        }
    },
    "authors": [
        {
            "name": "James Titcumb",
            "email": "asgrim@php.net"
        },
        {
            "name": "PIE contributors",
            "homepage": "https://github.com/php/pie/graphs/contributors"
        }
    ],
    "require": {
        "php": "8.1.*||8.2.*||8.3.*||8.4.*",
        "composer/composer": "^2.8.4",
        "composer/pcre": "^3.3.2",
        "composer/semver": "^3.4.3",
        "fidry/cpu-core-counter": "^1.2",
        "illuminate/container": "^10.48.25",
        "psr/container": "^2.0.2",
        "symfony/console": "^6.4.15",
        "symfony/process": "^6.4.15",
        "webmozart/assert": "^1.11"
    },
    "require-dev": {
        "behat/behat": "^3.17",
        "doctrine/coding-standard": "^12.0",
        "php-standard-library/psalm-plugin": "^2.3",
        "phpunit/phpunit": "^10.5.39",
        "psalm/plugin-phpunit": "^0.19.0",
        "vimeo/psalm": "^5.26.1"
    },
    "replace": {
        "symfony/polyfill-php81": "*",
        "symfony/polyfill-php80": "*",
        "symfony/polyfill-php73": "*"
    },
    "config": {
        "sort-packages": true,
        "preferred-install": "dist",
        "bump-after-update": true,
        "allow-plugins": {
            "dealerdirect/phpcodesniffer-composer-installer": true
        },
        "platform": {
            "php": "8.1.0"
        }
    }
}