-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.52 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
{
"name": "wpfulcrum/shortcode",
"description": "Fulcrum Shortcode Module - WordPress shortcodes made easy.",
"type": "library",
"keywords": ["wordpress", "shortcode"],
"homepage": "https://github.com/wpfulcrum/shortcode",
"license": "MIT",
"support": {
"issues": "https://github.com/wpfulcrum/shortcode/issues",
"source": "https://github.com/wpfulcrum/shortcode"
},
"authors": [
{
"name": "Tonya Mork",
"email": "hello@hellofromtonya.com"
}
],
"autoload": {
"psr-4": {
"Fulcrum\\Custom\\Shortcode\\": "src/Custom/Shortcode/"
}
},
"autoload-dev": {
"psr-4": {
"Fulcrum\\Tests\\Integration\\": "tests/Integration/",
"Fulcrum\\Tests\\Unit\\": "tests/Unit/"
}
},
"require": {
"php": "^5.6|^7",
"wpfulcrum/config": "^3",
"wpfulcrum/foundation": "^3"
},
"require-dev": {
"brain/monkey": "^2.0",
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~4.8|~5.7.9",
"squizlabs/php_codesniffer": "^3.0",
"sensiolabs/security-checker": "^4.0"
},
"config": {
"sort-order": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"phpcs": "\"vendor/bin/phpcs\"",
"test-unit": "\"vendor/bin/phpunit\" --testsuite unit",
"test-integration": "\"vendor/bin/phpunit\" --testsuite integration --configuration tests/Integration/phpunit.xml.dist"
}
}