first commit
This commit is contained in:
75
composer.json
Normal file
75
composer.json
Normal file
@ -0,0 +1,75 @@
|
||||
{
|
||||
"name": "timber/starter-theme",
|
||||
"description": "Starter theme to build a Timber theme",
|
||||
"type":"wordpress-theme",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Erik van der Bas",
|
||||
"email": "erik@basedonline.nl",
|
||||
"homepage": "https://basedonline.nl"
|
||||
},
|
||||
{
|
||||
"name": "Lukas Gächter",
|
||||
"email": "lukas.gaechter@mind.ch",
|
||||
"homepage": "https://www.mind.ch"
|
||||
},
|
||||
{
|
||||
"name": "Nicolas Lemoine",
|
||||
"email": "nico@n5s.dev",
|
||||
"homepage": "https://n5s.dev"
|
||||
},
|
||||
{
|
||||
"name": "Jared Novack",
|
||||
"email": "jared@upstatement.com",
|
||||
"homepage": "https://upstatement.com"
|
||||
},
|
||||
{
|
||||
"name": "Timber Community",
|
||||
"homepage": "https://github.com/timber/timber"
|
||||
}
|
||||
],
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://wpackagist.org"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"timber/timber": "^2.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"automattic/wordbless": "^0.4.2",
|
||||
"yoast/wp-test-utils": "^1.0",
|
||||
"wp-coding-standards/wpcs": "^3.1",
|
||||
"phpcompatibility/php-compatibility": "^9",
|
||||
"szepeviktor/phpstan-wordpress": "^1.3",
|
||||
"10up/phpcs-composer": "^3.0"
|
||||
},
|
||||
"extra": {
|
||||
"installer-paths": {
|
||||
"vendor/automattic/wordbless/": [
|
||||
"automattic/wordbless"
|
||||
]
|
||||
},
|
||||
"wordpress-install-dir": "wordpress"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"roots/wordpress-core-installer": true,
|
||||
"composer/installers": true,
|
||||
"dealerdirect/phpcodesniffer-composer-installer": true
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"App\\": "src/"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"test": "phpunit",
|
||||
"cs": "@php ./vendor/bin/phpcs --colors -s -p -v ./",
|
||||
"cs:fix": "@php ./vendor/bin/phpcbf --colors -s -p -v ./",
|
||||
"phpstan": "@php ./vendor/bin/phpstan analyse"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user