-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.19 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
43
44
45
46
47
{
"name": "unocha/ocha_ai",
"description": "OCHA AI module",
"type": "drupal-module",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "UNOCHA",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": ">=8.2",
"aws/aws-sdk-php": "^3.283",
"drupal/core": "^10",
"drupal/honeypot": "^2",
"openai-php/client": "^0.7",
"pear/text_languagedetect": "^1.0",
"reliefweb/simple-autocomplete": "^v1.3",
"reliefweb/simple-datepicker": "^v1.3",
"symfony/uid": "^6.3"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"drupal/coder": "^8.3",
"phpcompatibility/php-compatibility": "^9.3"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs -p .",
"phpcbf": "vendor/bin/phpcbf -p .",
"test": [
"@phpcs"
]
}
}