-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.1 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "ecommit/frequency-generator",
"description": "Get the next date by frequency.",
"keywords": ["frequency", "period", "day", "week", "month", "quart", "half year", "year", "dayly", "weekly", "monthly", "quartly", "yearly"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Hubert Lecorche",
"email": "contact@e-commit.fr"
}
],
"autoload": {
"psr-4": { "Ecommit\\FrequencyGenerator\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ecommit\\FrequencyGenerator\\Tests\\": "tests/" }
},
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.88",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpunit/phpunit": "^9.5"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}