-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
51 lines (51 loc) · 1.54 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": "alleyinteractive/logger",
"type": "wordpress-plugin",
"description": "A Monolog-based logging tool for WordPress. Supports storing log message in a custom post type or in individual posts and terms. ",
"homepage": "https://github.com/alleyinteractive/logger",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Alley Interactive",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"alleyinteractive/composer-wordpress-autoloader": "^1.0",
"monolog/monolog": "^2.8",
"psr/log": "^1.0|^2.0|^3.0",
"spatie/backtrace": "^1.6",
"mantle-framework/support": "^1.0"
},
"require-dev": {
"alleyinteractive/alley-coding-standards": "^2.0",
"mantle-framework/testkit": "^1.0",
"mockery/mockery": "^1.3"
},
"config": {
"allow-plugins": {
"alleyinteractive/composer-wordpress-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"apcu-autoloader": true,
"optimize-autoloader": true
},
"extra": {
"wordpress-autoloader": {
"autoload": {
"AI_Logger\\": "inc/"
}
}
},
"scripts": {
"phpcbf": "phpcbf --standard=./phpcs.xml .",
"phpcs": "phpcs --standard=./phpcs.xml .",
"phpunit": "phpunit",
"release": "npx @alleyinteractive/create-release@latest",
"test": [
"@phpcs",
"@phpunit"
]
}
}