summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2023-03-20 10:20:48 +0100
committerRemi Collet <remi@php.net>2023-03-20 10:20:48 +0100
commit430f25ae485508d91be5a14b6554ed4222add529 (patch)
tree0ef3377aa945bc90bc2485ac5fa07e5e2221affd /composer.json
new package
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..3b902ae
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,42 @@
+{
+ "name": "phpstan/phpdoc-parser",
+ "description": "PHPDoc parser with support for nullable, intersection and generic types",
+ "license": "MIT",
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^1.5",
+ "phpstan/phpstan-phpunit": "^1.1",
+ "phpstan/phpstan-strict-rules": "^1.0",
+ "phpunit/phpunit": "^9.5",
+ "symfony/process": "^5.2"
+ },
+ "config": {
+ "platform": {
+ "php": "7.4.6"
+ },
+ "sort-packages": true,
+ "allow-plugins": {
+ "phpstan/extension-installer": true
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PHPStan\\PhpDocParser\\": [
+ "src/"
+ ]
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "PHPStan\\PhpDocParser\\": [
+ "tests/PHPStan"
+ ]
+ }
+ },
+ "minimum-stability": "dev",
+ "prefer-stable": true
+}