-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
24 lines (24 loc) · 999 Bytes
/
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
{
"name": "metaways/timezoneconvert",
"description": "Metaways Infosystems GmbH - TimeZoneConvert Library",
"type": "project",
"keywords": ["Timezones", "TimeZoneConvert", "UTC", "Time"],
"homepage": "http://www.tine20.org",
"license" : ["MIT", "BSD", "GPL"],
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-0": {
"TimeZoneConvert": ["lib/", "tests/"]
}
},
"scripts": {
"php8test": "cd tests/docker; docker-compose run cli8 ash -c 'cd /src/tests; ../vendor/bin/phpunit --color TimeZoneConvert/AllTests.php'; cd ../..;",
"php81test": "cd tests/docker; docker-compose run cli81 ash -c 'cd /src/tests; ../vendor/bin/phpunit --color TimeZoneConvert/AllTests.php'; cd ../..;",
"php82test": "cd tests/docker; docker-compose run cli82 ash -c 'cd /src/tests; ../vendor/bin/phpunit --color TimeZoneConvert/AllTests.php'; cd ../..;"
}
}