-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 735 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 735 Bytes
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
{
"name": "mattstein/alfred-coolify-workflow",
"type": "project",
"description": "Quickly jump to Coolify servers and projects.",
"keywords": [
"alfred",
"coolify"
],
"license": "MIT",
"require": {
"php": "^8.2",
"joetannenbaum/alfred-workflow": "dev-master",
"guzzlehttp/guzzle": "^7.9"
},
"require-dev": {
"pestphp/pest": "^3.0"
},
"autoload": {
"classmap": ["CoolifyClient.php"]
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mattstein/alfred-workflow"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "pest"
}
}