-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathcomposer.json
46 lines (46 loc) · 1.03 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
{
"name": "10up/classifai",
"description": "Enhance your WordPress content with Artificial Intelligence and Machine Learning services.",
"authors": [
{
"name": "10up",
"email": "[email protected]"
}
],
"type": "wordpress-plugin",
"license": "GPLv2",
"require": {
"php": ">=7.4",
"yahnis-elsts/plugin-update-checker": "5.1",
"ua-parser/uap-php": "dev-master"
},
"autoload": {
"psr-4": {
"Classifai\\": "includes/Classifai/"
},
"files": [
"includes/Classifai/Helpers.php",
"includes/Classifai/Blocks.php",
"includes/Classifai/Providers/Watson/Helpers.php"
]
},
"require-dev": {
"10up/phpcs-composer": "^3.0",
"yoast/phpunit-polyfills": "^1.0.0"
},
"scripts": {
"lint": "phpcs -s . --runtime-set testVersion 7.4-",
"lint-fix": "phpcbf ."
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"archive": {
"exclude": [
"!/vendor/"
]
}
}