forked from webshr/core
initial commit
This commit is contained in:
58
composer.json
Normal file
58
composer.json
Normal file
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"name": "webshr/core",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"description": "Framework for WordPress projects.",
|
||||
"homepage": "https://webshore.eu/",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Henrik Liebel",
|
||||
"email": "mail@henrikliebel.com"
|
||||
}
|
||||
],
|
||||
"keywords": [
|
||||
"wordpress"
|
||||
],
|
||||
"bin": [
|
||||
"bin/core"
|
||||
],
|
||||
"support": {},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Lichtblick\\Core\\": "src/"
|
||||
},
|
||||
"files": [
|
||||
"src/helpers.php",
|
||||
"src/globals.php"
|
||||
]
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Lichtblick\\Core\\Tests\\": "tests"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.1",
|
||||
"psr/container": "^2.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^10.5",
|
||||
"squizlabs/php_codesniffer": "^3.12",
|
||||
"wp-coding-standards/wpcs": "^3.1"
|
||||
},
|
||||
"suggest": {},
|
||||
"config": {
|
||||
"sort-packages": true,
|
||||
"allow-plugins": {
|
||||
"pestphp/pest-plugin": true,
|
||||
"dealerdirect/phpcodesniffer-composer-installer": true
|
||||
}
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"scripts": {
|
||||
"lint": "pint --test",
|
||||
"lint:fix": "pint",
|
||||
"test": "pest",
|
||||
"coverage": "XDEBUG_MODE=coverage pest --coverage --coverage-html=coverage"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user