1
0
mirror of https://github.com/php/pie.git synced 2026-03-23 23:12:17 +01:00
Files
archived-pie/composer.json
James Titcumb 608cdb2e3c Bump phpstan/phpstan from 2.1.38 to 2.1.40
---
updated-dependencies:
- dependency-name: phpstan/phpstan
  dependency-version: 2.1.40
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-06 10:42:12 +00:00

70 lines
2.0 KiB
JSON

{
"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.*||8.5.*",
"composer/composer": "^2.9.5",
"composer/pcre": "^3.3.2",
"composer/semver": "^3.4.4",
"fidry/cpu-core-counter": "^1.3.0",
"illuminate/container": "^10.49.0",
"psr/container": "^2.0.2",
"symfony/console": "^6.4.34",
"symfony/event-dispatcher": "^6.4.32",
"symfony/process": "^6.4.33",
"thephpf/attestation": "^0.0.5",
"webmozart/assert": "^1.12.1"
},
"require-dev": {
"ext-openssl": "*",
"behat/behat": "^3.29.0",
"bnf/phpstan-psr-container": "^1.1",
"doctrine/coding-standard": "^14.0.0",
"phpstan/phpstan": "^2.1.40",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^10.5.63"
},
"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.99"
}
}
}