-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 736 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 736 Bytes
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
{
"name": "giorgi-leladze/ptp",
"description": "PHP Test Processor - high-performance parallel test runner for PHPUnit",
"type": "composer-plugin",
"license": "MIT",
"keywords": ["phpunit", "testing", "parallel", "laravel"],
"homepage": "https://github.com/giorgi-leladze/php-test-processor",
"bin": ["bin/ptp"],
"extra": {
"class": "Ptp\\Plugin"
},
"autoload": {
"psr-4": {
"Ptp\\": "src/"
}
},
"scripts": {
"post-install-cmd": ["@php scripts/download-ptp.php"],
"post-update-cmd": ["@php scripts/download-ptp.php"]
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"composer-plugin-api": "^2.0"
}
}