-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.56 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
{
"name": "stackonet/stackonet-news-generator",
"description": "A powerful WordPress plugin to recreate news using OpenAI api.",
"type": "project",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Stackonet Services (Pvt.) Ltd.",
"email": "[email protected]",
"homepage": "https://www.stackonet.com"
},
{
"name": "Sayful Islam",
"email": "[email protected]",
"homepage": "https://sayfulislam.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"StackonetNewsGenerator\\": "includes",
"StackonetNewsGenerator\\Modules\\": "modules"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-fileinfo": "*",
"stackonet/wp-helpers": "^1.10.0",
"abraham/twitteroauth": "^4.0",
"ext-imagick": "*"
},
"require-dev": {
"wp-cli/wp-cli-bundle": "*",
"phpunit/phpunit": "^9.0",
"roots/wordpress": "^5.9",
"wp-phpunit/wp-phpunit": "^5.9",
"yoast/phpunit-polyfills": "^1.0",
"squizlabs/php_codesniffer": "^3.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-coding-standards/wpcs": "*"
},
"scripts": {
"make-pot": "wp i18n make-pot . languages/stackonet-news-generator.pot",
"empty-tables": "wp stackonet-news-generator empty_tables",
"lint": "phpcs --standard=phpcs.xml",
"format": "phpcbf --standard=phpcs.xml"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}