-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.16 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "runyan-co/pm",
"description": "A lightweight cli tool to aid local develop of ProcessMaker software",
"type": "project",
"license": "MIT",
"homepage": "https://github.com/runyan-co/pm",
"bin": ["pm"],
"version": "2.1.0",
"authors": [
{
"name": "Alex Runyan",
"email": "alex@runyan.co"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-posix": "*",
"illuminate/support": "^8.83",
"illuminate/container": "^8.83",
"mnapoli/silly": "^1.7",
"react/child-process": "^0.6.4",
"symfony/process": "^5.4",
"symfony/console": "^5.4",
"mockery/mockery": "^1.5",
"spatie/fork": "^1.2"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.8",
"nunomaduro/phpinsights": "^2.2"
},
"suggest": {
"phpunit/phpunit": "^9.5",
"ext-pcntl": "*"
},
"autoload": {
"files": [
"includes/compatability.php",
"includes/require.php"
],
"psr-4": {
"ProcessMaker\\Cli\\": "src/ProcessMaker/Cli"
}
}
}