-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.02 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.02 KB
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
{
"name": "chubes/datamachine",
"description": "WordPress plugin for automated data collection, AI processing, and multi-platform publishing",
"version": "0.10.2",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.2",
"woocommerce/action-scheduler": "^3.9",
"chubes4/ai-http-client": "^2.0.13"
},
"require-dev": {
"php-stubs/wordpress-stubs": "^6.9",
"wp-coding-standards/wpcs": "^3.1",
"phpcsstandards/phpcsutils": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"autoload": {
"psr-4": {
"DataMachine\\Abilities\\": "inc/Abilities/",
"DataMachine\\Api\\": "inc/Api/",
"DataMachine\\Cli\\": "inc/Cli/",
"DataMachine\\Core\\": "inc/Core/",
"DataMachine\\Engine\\": "inc/Engine/"
}
},
"autoload-dev": {
"psr-4": {
"DataMachine\\Tests\\": "tests/"
}
},
"scripts": {
"test": "homeboy test data-machine",
"lint": "phpcs",
"lint-fix": "phpcbf"
},
"config": {
"process-timeout": 0,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}