-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
executable file
·34 lines (34 loc) · 1.05 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
{
"name": "benhall14/php-calendar",
"description": "A simple PHP class to generate calendars.",
"homepage": "https://github.com/benhall14/php-calendar",
"keywords": ["calendar", "time", "date", "calendars"],
"license": "MIT",
"authors": [
{
"name": "Benjamin Hall",
"email": "[email protected]",
"homepage": "https://github.com/benhall14",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"nesbot/carbon": "2.*|3.*"
},
"scripts": {
"analyze": "./vendor/bin/phpstan analyse --memory-limit=2G -c ./ruleset-phpstan.neon ",
"cs": "./vendor/bin/php-cs-fixer fix -vvv --show-progress=dots --config=ruleset-php_cs.php",
"rector": "./vendor/bin/rector process --config=rector.php"
},
"autoload": {
"psr-4": {
"benhall14\\phpCalendar\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"rector/rector": "^1.2",
"phpstan/phpstan": "^1.12"
}
}