-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
55 lines (55 loc) · 1.37 KB
/
composer.json
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
48
49
50
51
52
53
54
55
{
"name": "phpsandbox/cli",
"description": "A CLI tool for PHPSandbox.",
"keywords": ["phpsandbox", "console", "cli"],
"homepage": "https://phpsandbox.io",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "PHPSandbox",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"composer/composer": "^1.10",
"guzzlehttp/guzzle": "^6.5.5",
"illuminate/http": "^8.0",
"laminas/laminas-text": "^2.7",
"nelexa/zip": "^4.0",
"padraic/phar-updater": "^1.0.6",
"symfony/finder": "^5.1",
"symfony/process": "^5.2",
"ext-curl": "*"
},
"require-dev": {
"laravel-zero/framework": "^8.0",
"mockery/mockery": "^1.4.2",
"phpunit/phpunit": "^9.3",
"friendsofphp/php-cs-fixer": "^2.18",
"ext-zip": "*"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/psb"],
"scripts":{
"fix-style":"php-cs-fixer fix --verbose"
}
}