summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2024-10-04 16:26:31 +0200
committerRemi Collet <remi@php.net>2024-10-04 16:26:31 +0200
commit7c7bd7b427135a73d543d2477140629c42ff23bf (patch)
treea80c07bb2dae40a3949b14295ebe55c8d0e3fbf9 /composer.json
Initial package from dev-main
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json56
1 files changed, 56 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..74027ad
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,56 @@
+{
+ "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.*",
+ "ext-zip": "*",
+ "composer/composer": "dev-main@dev",
+ "guzzlehttp/guzzle": "^7.8",
+ "guzzlehttp/psr7": "^2.6",
+ "illuminate/container": "^10.47",
+ "psr/http-message": "^2.0",
+ "symfony/console": "^6.4",
+ "symfony/process": "^6.4",
+ "webmozart/assert": "^1.11"
+ },
+ "require-dev": {
+ "behat/behat": "^3.14",
+ "doctrine/coding-standard": "^12.0",
+ "php-standard-library/psalm-plugin": "^2.3",
+ "phpunit/phpunit": "^10.5",
+ "psalm/plugin-phpunit": "^0.18.4",
+ "vimeo/psalm": "^5.22"
+ },
+ "config": {
+ "sort-packages": true,
+ "preferred-install": "dist",
+ "allow-plugins": {
+ "dealerdirect/phpcodesniffer-composer-installer": true
+ }
+ }
+}