-
Notifications
You must be signed in to change notification settings - Fork 52
/
composer.json
61 lines (61 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"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",
"aws/aws-sdk-php": "^3.300",
"woocommerce/action-scheduler": "3.8.1"
},
"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",
"szepeviktor/phpstan-wordpress": "dev-master",
"phpstan/extension-installer": "1.4.x-dev",
"php-stubs/wp-cli-stubs": "dev-master",
"johnbillion/wp-compat": "dev-trunk",
"phpstan/phpstan-deprecation-rules": "1.2.x-dev"
},
"scripts": {
"lint": "phpcs -s . --runtime-set testVersion 7.4-",
"lint-fix": "phpcbf .",
"phpstan": "phpstan analyse --memory-limit=2048M -v",
"pre-autoload-dump": "Aws\\Script\\Composer\\Composer::removeUnusedServices"
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"archive": {
"exclude": [
"!/vendor/"
]
},
"extra": {
"aws/aws-sdk-php": [
"Polly"
]
}
}