-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.56 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
{
"name": "metrixio/github-public",
"type": "project",
"license": "MIT",
"description": "This tool helps developers see how popular their code is and how it's being used. It works with Prometheus and Grafana to gather data from Github and create cool visualizations. You can use Grafana to filter and customize the metrics you collect. We hope you find it helpful!",
"homepage": "https://github.com/metrixio/github-public",
"support": {
"issues": "https://github.com/metrixio/github-public/issues",
"source": "https://github.com/metrixio/github-public"
},
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"nesbot/carbon": "^2.63",
"spiral/framework": "^3.5",
"spiral/roadrunner-bridge": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"spiral/testing": "^2.2",
"symfony/var-dumper": "^6.1",
"vimeo/psalm": "dev-master"
},
"autoload": {
"psr-4": {
"App\\": "app/src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"publish-cmd": "php app.php publish"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": true
}
},
"scripts": {
"post-create-project-cmd": [
"php -r \"copy('.env.sample', '.env');\"",
"php app.php configure -vv",
"rr get-binary"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}