-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.1 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.1 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
46
47
{
"name": "cognesy/instructor-sandbox",
"description": "Sandboxed command execution for PHP with multiple drivers (Host, Docker, Podman, Firejail, Bubblewrap)",
"license": "MIT",
"homepage": "https://instructorphp.com",
"support": {
"issues": "https://github.com/cognesy/instructor-php/issues",
"source": "https://github.com/cognesy/instructor-php"
},
"authors": [
{
"name": "Dariusz Debowczyk",
"email": "ddebowczyk@gmail.com"
}
],
"autoload": {
"psr-4": {
"Cognesy\\Sandbox\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cognesy\\Sandbox\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"require": {
"php": "^8.3",
"symfony/process": "^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"pestphp/pest": "^2.34",
"phpstan/phpstan": "^1.11"
},
"scripts": {
"tests": "@php vendor/bin/pest",
"phpstan": "@php vendor/bin/phpstan -c phpstan.neon"
},
"minimum-stability": "RC",
"prefer-stable": true
}