-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
37 lines (37 loc) · 1.08 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
{
"name": "codesvalut/kathamo",
"description": "This is where everything mix together. Kathamo is a framework for WordPress development. It is a collection of packages that work together in harmony.",
"type": "project",
"license": "GPL-2.0",
"authors": [
{
"name": "CodesVault",
"email": "codesvault@gmail.com"
},
{
"name": "Keramot UL Islam [AbmSourav]",
"email": "keramotul.islam@gmail.com"
}
],
"autoload": {
"psr-4": {
"Kathamo\\App\\": "app/"
}
},
"scripts": {
"phpcs": "phpcs ",
"phpcbf": "phpcbf ",
"post-install-cmd": "phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs"
},
"require-dev": {
"symfony/var-dumper": "^5.4",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^2.3",
"codesvault/wp-seeder": "^1.1"
},
"require": {
"codesvault/howdy-qb": "^1.5",
"codesvault/validator": "^1.1",
"codesvault/kathamo-framework": "^1.2"
}
}