-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·51 lines (51 loc) · 1.37 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": "awesomehub/cli",
"type": "project",
"description": "Awesomehub command line interface for generating API Data",
"keywords": ["cli", "console", "github", "api"],
"homepage": "https://awesomehub.js.org/",
"license": "MIT",
"authors": [
{
"name": "Mohamed Elkholy",
"email": "[email protected]"
}
],
"scripts": {
"hub": "hub",
"lint": "@cs-fixer --dry-run --format=checkstyle",
"lint:fix": "@cs-fixer",
"cs-fixer": "PHP_CS_FIXER_FUTURE_MODE=1 php ./tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --verbose"
},
"require": {
"php": ">=8.0",
"ext-iconv": "*",
"psr/log": "^1.0",
"symfony/console": "^5.3",
"symfony/dependency-injection": "^5.3",
"symfony/expression-language": "^5.3",
"symfony/filesystem": "^5.3",
"symfony/cache": "^5.3",
"symfony/process": "^5.3",
"symfony/serializer": "^5.3",
"symfony/config": "^5.3",
"symfony/dom-crawler": "^5.3",
"symfony/css-selector": "^5.3",
"league/commonmark": "^1.6",
"php-http/client-common": "^2.3",
"guzzlehttp/guzzle": "^7.1",
"guzzlehttp/psr7": "2.0.0-rc1",
"knplabs/github-api": "^3.3",
"mohatt/github-api-utils": "dev-master"
},
"require-dev": {
"symfony/error-handler": "^5.3",
"symfony/var-dumper": "^5.3"
},
"bin": ["bin/hub"],
"autoload": {
"psr-4": {
"Hub\\": "src/Hub"
}
}
}