-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
60 lines (60 loc) · 1.88 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
{
"name": "ricardopedias/php-time-collision",
"type": "library",
"description": "Biblioteca para cálculos de colisão horários com PHP",
"keywords": [
"helpers",
"library"
],
"authors": [
{
"name": "Ricardo Pereira Dias",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"docs": "https://github.com/ricardopedias/php-time-collision",
"issues": "https://github.com/ricardopedias/php-time-collision/issues",
"source": "https://github.com/ricardopedias/php-time-collision"
},
"license": "MIT",
"require": {
"php": ">=7.4",
"league/flysystem": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12.36",
"squizlabs/php_codesniffer": "3.*",
"phpmd/phpmd" : "@stable",
"ext-mbstring": "*",
"codacy/coverage": "dev-master"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"TimeCollision\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts":{
"test":"vendor/bin/phpunit --coverage-html coverage --testdox $1",
"coverage-html":"vendor/bin/phpunit --coverage-html coverage; x-www-browser coverage/index.html & ",
"coverage-xml":"vendor/bin/phpunit --coverage-clover clover.xml",
"psr": "vendor/bin/phpcs --standard=PSR1,PSR12 src",
"fixer": "vendor/bin/phpcbf --standard=PSR1,PSR12 src",
"analyse" : "vendor/bin/phpstan analyse src --level 8",
"mess" : "vendor/bin/phpmd src ansi cleancode,codesize,controversial,design,naming,unusedcode"
}
}