summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2024-02-05 09:42:09 +0100
committerRemi Collet <remi@php.net>2024-02-05 09:42:09 +0100
commit21080502833bab3353a152a09b2c0165a364d956 (patch)
tree67ce4dc06d981e44a8993b768ef6140d7a893ab5 /composer.json
dup v4
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json54
1 files changed, 54 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..c3dc5ac
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,54 @@
+{
+ "name": "phpunit/php-invoker",
+ "description": "Invoke callables with a timeout",
+ "type": "library",
+ "keywords": [
+ "process"
+ ],
+ "homepage": "https://github.com/sebastianbergmann/php-invoker/",
+ "license": "BSD-3-Clause",
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-invoker/issues"
+ },
+ "prefer-stable": true,
+ "config": {
+ "platform": {
+ "php": "8.1.0"
+ },
+ "optimize-autoloader": true,
+ "sort-packages": true
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "ext-pcntl": "*",
+ "phpunit/phpunit": "^10.0"
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "autoload-dev": {
+ "classmap": [
+ "tests/_fixture/"
+ ]
+ },
+ "suggest": {
+ "ext-pcntl": "*"
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.0-dev"
+ }
+ }
+}
+