-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.27 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "denvercoder1/github-readme-streak-stats",
"description": "🔥 Stay motivated and show off your contribution streak! 🌟 Display your total contributions, current streak, and longest streak on your GitHub profile README.",
"keywords": [
"github",
"dynamic",
"readme",
"contributions",
"streak",
"stats"
],
"license": "MIT",
"version": "1.6.0",
"homepage": "https://github.com/DenverCoder1/github-readme-streak-stats",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/DenverCoder1/github-readme-streak-stats"
}
],
"support": {
"issues": "https://github.com/DenverCoder1/github-readme-streak-stats/issues",
"source": "https://github.com/DenverCoder1/github-readme-streak-stats"
},
"autoload": {
"classmap": [
"src/"
]
},
"require": {
"php": "^8.2",
"ext-intl": "*",
"vlucas/phpdotenv": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "^11"
},
"scripts": {
"start": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8000 -t src"
],
"test": "./vendor/bin/phpunit --testdox tests",
"lint": "npx prettier --check *.md **/*.{php,md,js,css}",
"lint-fix": "npx prettier --write *.md **/*.{php,md,js,css}"
}
}