-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
36 lines (36 loc) · 1.44 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
{
"scripts": {
"test-python": "cd install && venv/bin/python -m pytest",
"test": "vendor/bin/phpunit --bootstrap tests/autoload.php --fail-on-warning --testdox tests/unit_tests",
"test-integration": "vendor/bin/phpunit --bootstrap tests/autoload.php --fail-on-warning --testdox tests/unit_tests --group integration",
"local-test": "vendor/bin/phpunit --bootstrap tests/autoload.php --stop-on-failure --testdox --fail-on-warning tests/unit_tests",
"run-test": "vendor/bin/phpunit --bootstrap tests/autoload.php --stop-on-failure --testdox --fail-on-warning tests/unit_tests --filter ",
"make-test-config": "management/ci/make_test_config.sh settings/Config.ini settings/Private.php",
"container-setup": "management/ci/container_setup.sh"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/dgarciabriseno/helioviewer-event-interface.git"
},
{
"type": "vcs",
"url": "https://github.com/dgarciabriseno/device-detector.git"
}
],
"autoload": {
"psr-4": {
"Helioviewer\\Api\\": "src/"
}
},
"require": {
"helioviewer/event-interface": "^0.2.4",
"matomo/device-detector": "dev-master",
"opis/json-schema": "^2.3",
"google/apiclient": "^2.16",
"sentry/sentry": "^4.8"
},
"require-dev": {
"phpunit/phpunit": "^9.6"
}
}