-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
37 lines (37 loc) · 902 Bytes
/
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
{
"name": "glen/slack-unfurl-gitlab",
"description": "GitLab links unfurler for slack-unfurl",
"license": "MIT",
"config": {
"platform": {
"php": "7.1.3"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"GitlabSlackUnfurl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GitlabSlackUnfurl\\Test\\": "tests/"
}
},
"require": {
"php": "^7.1.3",
"m4tthumphrey/php-gitlab-api": "^9.7",
"php-http/guzzle6-adapter": "^1.1"
},
"conflict": {
"glen/slack-unfurl": "<0.9.0"
},
"require-dev": {
"glen/slack-unfurl": "^0.9.0",
"ocramius/lazy-property": "^1.0|^2.0",
"phpunit/phpunit": "^7.0",
"symfony/dotenv": "^4.0|^5.0",
"symfony/var-dumper": "^4.1",
"symfony/yaml": "^4.1"
}
}