-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.09 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 1.09 KB
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
{
"name": "utopia-php/vcs",
"description": "A simple library to integrate version control systems like GitHub, GitLab etc. to receive webhook events",
"type": "library",
"keywords": [
"php",
"framework",
"utopia",
"vcs"
],
"license": "MIT",
"minimum-stability": "stable",
"scripts": {
"test": "phpunit --configuration phpunit.xml --testsuite unit",
"test:e2e": [
"@php tests/credentials.php",
"phpunit --configuration phpunit.xml --testsuite e2e"
]
},
"autoload": {
"psr-4": {
"Utopia\\VCS\\": "src/VCS"
}
},
"autoload-dev": {
"psr-4": {
"Utopia\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.4",
"adhocore/jwt": "^1.1",
"utopia-php/cache": "^4.0 || ^5.0",
"utopia-php/fetch": "^1.1"
},
"require-dev": {
"utopia-php/system": "0.10.*"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
}
}
}