This repository has been archived by the owner on Jan 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.77 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "imaginary-machines/plugin-machine-php-cli",
"description": "PHP Cli For Plugin Machine",
"keywords": [
"framework",
"laravel",
"laravel zero",
"console",
"cli"
],
"homepage": "https://github.com/imaginarymachines/plugin-machine-php-cli",
"type": "project",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/imaginarymachines/plugin-machine-php-cli/issues",
"source": "https://github.com/imaginarymachines/plugin-machine-php-cli"
},
"authors": [
{
"name": "Josh Pollock",
"email": "josh@joshpress.net"
}
],
"scripts": {
"lint": "phpcs app/ --standard=phpcs.xml",
"fix": "phpcbf app/ --standard=phpcs.xml",
"compat": "phpcs -p app/ bootstrap/ config/ --standard=PHPCompatibility -n --runtime-set testVersion 7.3",
"compat:version": "phpcs -p app/ bootstrap/ config/ --standard=PHPCompatibility -n --runtime-set testVersion"
},
"require": {
"php": "^7.3|^8.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"guzzlehttp/guzzle": "^7.4",
"illuminate/container": "^8.73",
"illuminate/http": "^8.0",
"illuminate/log": "^8.0",
"laravel-zero/framework": "^8.8",
"laravel-zero/phar-updater": "^1.0.6",
"league/flysystem-ziparchive": "^1.0",
"phpcompatibility/php-compatibility": "^9.0",
"psr/container": "^1.1.0"
},
"require-dev": {
"mockery/mockery": "^1.4.3",
"pestphp/pest": "^1.3",
"phpstan/phpstan": "^1.2",
"squizlabs/php_codesniffer": "3.*"
},
"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/plugin-machine"
]
}