-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.02 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
{
"name": "tilson/git-report-php",
"description": "simple package for create report from git in php",
"type": "library",
"license": "MIT",
"version": "1.1.0",
"autoload": {
"psr-4": {
"Tilson\\GitReportPhp\\": "src/"
}
},
"require": {
"php": "^8.1",
"symfony/filesystem": "^6.3",
"illuminate/support": "*",
"nunomaduro/termwind": "^1.15"
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"phpstan/phpstan": "^1.10",
"orchestra/testbench": "^8.9",
"friendsofphp/php-cs-fixer": "^3.25"
},
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"homepage": "https://tilsonmateus.com",
"role": "Developer",
"name": "Tilson Mateus",
"email": "tilsonmat@gmail.com"
}
],
"extra": {
"laravel": {
"providers": [
"Tilson\\GitReportPhp\\GitLogProvider"
]
}
}
}