-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 918 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "saltus/framework",
"type": "project",
"license": "GPL-3.0-only",
"description": "",
"homepage": "https://saltus.io/",
"authors": [
{
"name": "Saltus Plugin Framework",
"email": "[email protected]",
"homepage": "https://saltus.io/"
}
],
"keywords": [
"wordpress", "composer", "vagrant", "wp"
],
"repositories": {
"0": {
"type": "composer",
"url": "https://wpackagist.org"
}
},
"autoload": {
"psr-4": {
"Saltus\\WP\\Framework\\": "src/"
},
"files": [
"lib/codestar-framework/codestar-framework.php"
]
},
"autoload-dev": {
"psr-4": {
"Saltus\\WP\\Framework\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"hassankhan/config": "^3.1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.0",
"squizlabs/php_codesniffer": "^3.2.3"
},
"scripts": {
"test": [
"vendor/bin/phpcs"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}