-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathcomposer.json
66 lines (66 loc) · 1.79 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "solaris/php-moon-phase",
"description": "Calculate the phases of the Moon in PHP.",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"moon",
"phase"
],
"authors": [
{
"name": "Samir Shah",
"email": "[email protected]"
},
{
"name": "Erik Scheepers",
"email": "[email protected]",
"role": "Packaging for composer"
},
{
"name": "Tobias Köngeter",
"email": "[email protected]",
"homepage": "https://www.bitandblack.com"
}
],
"homepage": "https://github.com/BitAndBlack/php-moon-phase",
"funding": [
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/tobiaskoengeter"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^11.0",
"rector/rector": "^1.0",
"symplify/easy-coding-standard": "^12.0"
},
"autoload": {
"psr-4": {
"Solaris\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Solaris\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpstan": "php vendor/bin/phpstan analyse --configuration ./phpstan.neon --memory-limit=-1 --ansi",
"phpunit": "php vendor/bin/phpunit --configuration ./phpunit.xml --colors=always",
"refactor": "php vendor/bin/rector && php vendor/bin/ecs --fix"
},
"scripts-descriptions": {
"phpstan": "Runs PHPStan over the src folder and the tests folder.",
"phpunit": "Runs PHPUnit.",
"refactor": "Runs tools to refactor the code."
}
}