-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·57 lines (57 loc) · 1.51 KB
/
composer.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.51 KB
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
{
"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": "mohatt@pm.me"
}
],
"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": "^3.0",
"symfony/console": "^7.1.4",
"symfony/dependency-injection": "^7.1.4",
"symfony/expression-language": "^7.1.4",
"symfony/filesystem": "^7.1.2",
"symfony/cache": "^7.1.4",
"symfony/process": "^7.1.3",
"symfony/serializer": "^7.1.4",
"symfony/config": "^7.1.1",
"symfony/dom-crawler": "^7.1.1",
"symfony/css-selector": "^7.1.1",
"league/commonmark": "^2.5.3",
"php-http/client-common": "^2.7.1",
"guzzlehttp/guzzle": "^7.9.2",
"guzzlehttp/psr7": "^2.7.0",
"knplabs/github-api": "^3.16.0",
"spatie/async": "^1.6",
"mohatt/github-api-utils": "dev-master#23ed4df"
},
"require-dev": {
"symfony/error-handler": "^7.1.3",
"symfony/var-dumper": "^7.1.4"
},
"bin": ["bin/hub"],
"autoload": {
"psr-4": {
"Hub\\": "src/Hub"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}