Skip to content

Instantly share code, notes, and snippets.

@nickdavis
Created July 29, 2022 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickdavis/c757fa034bc4a2866d819f93cd22c51d to your computer and use it in GitHub Desktop.
Save nickdavis/c757fa034bc4a2866d819f93cd22c51d to your computer and use it in GitHub Desktop.
composer.json starter
{
"name": "nickdavis/project-name",
"description": "",
"type": "project",
"license": "proprietary",
"prefer-stable": true,
"minimum-stability": "dev",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"config": {
"sort-packages": true,
"process-timeout": 600,
"preferred-install": "dist",
"platform": {
"php": "8.0"
}
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"kint-php/kint": "*",
"tracy/tracy": "*",
"wpackagist-plugin/airplane-mode": "*",
"wpackagist-plugin/query-monitor": "*",
"wpackagist-plugin/user-switching": "*"
},
"extra": {
"installer-paths": {
"mu-plugins/{$name}": [
"type:wordpress-muplugin"
],
"plugins/{$name}": [
"type:wordpress-plugin"
],
"themes/{$name}": [
"type:wordpress-theme"
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment