-
Notifications
You must be signed in to change notification settings - Fork 93
/
composer.json
41 lines (41 loc) · 1 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
{
"name": "stevegrunwell/asimov",
"description": "Automatically exclude development dependencies from Apple Time Machine backups",
"type": "project",
"authors": [
{
"name": "Steve Grunwell",
"homepage": "https://stevegrunwell.com"
},
{
"name": "Sudar Muthu",
"homepage": "https://sudarmuthu.com"
}
],
"support": {
"source": "https://github.com/stevegrunwell/asimov",
"issues": "https://github.com/stevegrunwell/asimov/issues"
},
"license": "MIT",
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^9.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "sh tests/bin/run-tests.sh"
},
"scripts-descriptions": {
"test": "Run the automated tests for Asimov."
},
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}