-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (51 loc) · 1.58 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
{
"name": "runopencode/event-overlaps",
"description": "Provides you with basic logic to check for events overlaping.",
"keywords": [
"event",
"overlap",
"validation"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Nikola Svitlica a.k.a TheCelavi",
"email": "[email protected]",
"homepage": "http://www.runopencode.com",
"role": "Project lead"
},
{
"name": "RunOpenCode members",
"email": "[email protected]",
"homepage": "http://www.runopencode.com"
}
],
"autoload": {
"psr-4": {
"RunOpenCode\\EventOverlaps\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"RunOpenCode\\EventOverlaps\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"scripts": {
"phpunit": "tools/phpunit.phar",
"composer-require-checker": "tools/composer-require-checker check composer.json --config-file=`pwd`/composer-require-checker.config.dist.json",
"composer-unused": "tools/composer-unused --excludeDir=build --excludeDir=tools",
"php-cs-fixer": "tools/php-cs-fixer fix --dry-run --diff --verbose --show-progress=dots",
"phpstan": "php tools/phpstan analyse --autoload-file=tools/phpunit.phar --memory-limit=1G",
"psalm": "tools/psalm --threads=8"
}
}