forked from joetannenbaum/alfred-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 862 Bytes
/
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
{
"name": "joetannenbaum/alfred-workflow",
"description": "PHP helper for creating Alfred Workflows.",
"license": "MIT",
"authors": [
{
"name": "Joe Tannenbaum",
"email": "[email protected]"
}
],
"homepage": "https://joe.codes",
"support": {
"source": "https://github.com/joetannenbaum/alfred-workflow",
"issues": "https://github.com/joetannenbaum/alfred-workflow/issues"
},
"require": {
"php": "^7.4.0||^8.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Alfred\\Workflows\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"laravel/pint": "^1.1",
"pestphp/pest": "^1.21"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}