-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 866 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 866 Bytes
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
{
"autoload": {
"psr-4": {
"Mariano\\GitAutoDeploy\\": "src/",
"Mariano\\GitAutoDeploy\\Test\\": "test/"
}
},
"name": "mnofresno/git-autodeploy",
"description": "This project allows a git repo to be automatically deployed based on events triggered by a webhook",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "Mariano Fresno",
"email": "mnofresno@gmail.com"
}
],
"require-dev": {
"phpunit/phpunit": "^8",
"friendsofphp/php-cs-fixer": "^3.9"
},
"scripts": {
"test": "vendor/bin/phpunit test \"$@\""
},
"require": {
"ramsey/uuid": "^4.2",
"monolog/monolog": "^2.9",
"php-di/php-di": "^6.3",
"symfony/yaml": "^5.4",
"guzzlehttp/guzzle": "^7.8"
}
}