Skip to content

Instantly share code, notes, and snippets.

@fencermonir
Created March 26, 2020 11:58
Show Gist options
  • Save fencermonir/851ab2285d26e5657bf8123191ccd361 to your computer and use it in GitHub Desktop.
Save fencermonir/851ab2285d26e5657bf8123191ccd361 to your computer and use it in GitHub Desktop.
Composer starter file for wp plugin.
===========================================
Comands
===========================================
go to the desire folder in comand promt
-> composer init
-> composer install
===========================================
{
"name": "monir1992/wedevs-academy",
"description": "A demo plugin",
"type": "wordpress-plugin",
"license": "GPLv2",
"authors": [
{
"name": "Monir Hossain",
"email": "fencemonir@gmail.com"
}
],
"minimum-stability": "dev",
"require": {},
"autoload": {
"psr-4": {
"WeDevs\\Academy\\": "includes/"
},
"files": []
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment