-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
38 lines (38 loc) · 1.15 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
{
"name": "syncroton/syncroton",
"type": "library",
"description": "Library to sync mobile devices",
"homepage": "http://www.syncroton.org",
"license": "LGPL-3",
"repositories": [{
"type": "git",
"url": "https://github.com/lkneschke/phing"
}, {
"type": "git",
"url": "https://github.com/tine20/zendframework1.git"
}],
"require": {
"php": ">=7.4.0",
"ext-ctype": "*",
"zendframework/zendframework1": "1.12.20.*"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phing/phing": "2.6.1-p0"
},
"autoload": {
"psr-0": {
"Syncroton": [
"lib/",
"tests/"
],
"Zend_": [
"vendor/zendframework/zendframework1/library"
]
}
},
"scripts": {
"php8test": "cd tests/docker; docker-compose run cli8 ash -c 'cd /src/tests; ../vendor/bin/phpunit --color Syncroton/AllTests.php'; cd ../..;",
"php81test": "cd tests/docker; docker-compose run cli81 ash -c 'cd /src/tests; ../vendor/bin/phpunit --color Syncroton/AllTests.php'; cd ../..;"
}
}