-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.32 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
{
"name": "hi-folks/maghic",
"version": "0.1.0",
"description": "Maghic: automatically generates your GitHub Actions Workflow.",
"keywords": ["github actions", "console", "cli"],
"homepage": "https://hi-folks.dev",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/Hi-Folks/maghic/issues",
"source": "https://github.com/Hi-Folks/maghic"
},
"authors": [
{
"name": "Roberto Butti",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"composer/semver": "^3.2",
"laminas/laminas-text": "^2.8",
"laravel-zero/framework": "^8.8",
"swaggest/json-schema": "^0.12.39",
"symfony/yaml": "^5.3"
},
"require-dev": {
"mockery/mockery": "^1.4.3",
"pestphp/pest": "^1.3",
"phpstan/phpstan": "^1.2",
"squizlabs/php_codesniffer": "^3.6"
},
"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": ["maghic"]
}