-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 861 Bytes
/
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
{
"name": "hasukmistry/ai-smart-suggestions",
"description": "AI Smart Suggestions",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "Hasmukh K Mistry",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.0"
}
},
"autoload": {
"classmap": ["src/"]
},
"scripts": {
"phpcs": "phpcs"
},
"require": {
"php": "^8.0",
"symfony/dependency-injection": "^5.3",
"symfony/config": "^5.3",
"symfony/yaml": "^5.3"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "^2.1"
}
}