-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
63 lines (63 loc) · 1.51 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
{
"name": "callingallpapers/cli",
"description": "A CLI to fetch as many CfPs as possible for callingallpapers.com",
"type": "project",
"authors": [
{
"name": "Andreas Heigl",
"email": "andreas@heigl.org",
"homepage": "https://andreas.heigl.org",
"role": "Developer"
}
],
"support": {
"email": "support@callingallpapers.com",
"irc": "irc://irc.freenode.org/joindin",
"issues": "https://github.com/joindin/callingallpapers-cli/issues",
"source": "https://github.com/joindin/callingallpapers-cli"
},
"keywords": [
"cfp",
"cli",
"parser",
"callingallpapers"
],
"homepage": "https://callingallpapers.com",
"license": "MIT",
"require": {
"php": "^7.2|^8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"colorfield/mastodon-api": "dev-master",
"guzzlehttp/guzzle": "^6.2",
"guzzlehttp/oauth-subscriber": "^0.3.0",
"ivopetkov/html5-dom-document-php": "^2.2.2",
"org_heigl/trait-iterator": "^1.0",
"symfony/console": "^6.0"
},
"autoload": {
"psr-4": {
"Callingallpapers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CallingallpapersTest\\Cli\\": "tests/"
}
},
"require-dev": {
"phing/phing": "^2.14",
"mockery/mockery": "^1.2",
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^8.0"
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit",
"cs": "vendor/bin/phpcs",
"csfix": "vendor/bin/phpcbf"
}
}