This repository has been archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.36 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "bakame/period-visualizer",
"description": "A Visualizer for League Period.",
"homepage": "https://github.com/bakame-php/period-visualizer",
"license": "MIT",
"keywords": [
"period",
"datetime",
"interval",
"debugger",
"time",
"range",
"gaps",
"intersections",
"visualizer"
],
"authors": [
{
"name": "Ignace Nyamagana Butera",
"homepage": "http://nyamsprod.com",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/bakame-php/laravel-domain-parser/graphs/contributors"
}
],
"require": {
"league/period": "^4.4",
"php" : "^7.2",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit" : "^8.1",
"phpstan/phpstan": "^0.12.1",
"phpstan/phpstan-strict-rules": "^0.12.0",
"phpstan/phpstan-phpunit": "^0.12.0"
},
"autoload": {
"psr-4": {
"Bakame\\Period\\Visualizer\\" : "src"
}
},
"autoload-dev": {
"psr-4": {
"BakameTest\\Period\\Visualizer\\": "tests"
}
},
"scripts": {
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes --ansi",
"phpstan-src": "phpstan analyse -l max -c phpstan.src.neon src --ansi",
"phpstan-tests": "phpstan analyse -l max -c phpstan.tests.neon tests --ansi",
"phpstan": [
"@phpstan-src",
"@phpstan-tests"
],
"phpunit": "phpunit --coverage-text",
"test": [
"@phpcs",
"@phpstan-src",
"@phpstan-tests",
"@phpunit"
]
},
"scripts-descriptions": {
"phpcs": "Runs coding style test suite",
"phpstan": "Runs complete codebase static analysis",
"phpstan-src": "Runs source code static analysis",
"phpstan-test": "Runs test suite static analysis",
"phpunit": "Runs unit and functional testing",
"test": "Runs full test suite"
},
"suggest": {
"league/climate": "to implement a better CLI console output",
"symfony/console": "to implement a better CLI console output"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}