-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.1 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.1 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
46
{
"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 --memory-limit 512M -c phpstan.neon src tests",
"test": "./vendor/bin/phpunit --configuration phpunit.xml --debug"
},
"autoload": {
"psr-4": {
"Utopia\\VCS\\": "src/VCS"
}
},
"autoload-dev": {
"psr-4": {
"Utopia\\Tests\\": "tests/VCS"
}
},
"require": {
"php": ">=8.0",
"adhocore/jwt": "^1.1",
"utopia-php/cache": "1.0.*"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"utopia-php/system": "0.10.*",
"laravel/pint": "1.*.*",
"phpstan/phpstan": "1.*.*"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
}
}
}