-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.05 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
{
"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": {
"lint": "./vendor/bin/pint --test --config pint.json",
"format": "./vendor/bin/pint --config pint.json",
"check": "./vendor/bin/phpstan analyse --level 8 -c phpstan.neon src tests",
"test": "./vendor/bin/phpunit --configuration phpunit.xml --debug"
},
"autoload": {
"psr-4": {
"Utopia\\VCS\\": "src/VCS",
"Utopia\\Detector\\": "src/Detector"
}
},
"autoload-dev": {
"psr-4": {
"Utopia\\Tests\\": "tests/VCS"
}
},
"require": {
"php": ">=8.0",
"adhocore/jwt": "^1.1",
"utopia-php/framework": "1.0.*",
"utopia-php/system": "0.9.*",
"utopia-php/cache": "0.10.*"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"laravel/pint": "1.2.*",
"phpstan/phpstan": "1.8.*"
}
}