-
-
Notifications
You must be signed in to change notification settings - Fork 747
/
composer.json
37 lines (37 loc) · 1.01 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
{
"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.4.0",
"homepage": "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": "prettier --check *.md **/*.{php,md,js,css} !**/*.min.js --print-width 120",
"lint-fix": "prettier --write *.md **/*.{php,md,js,css} !**/*.min.js --print-width 120"
}
}