Created
March 26, 2020 11:58
-
-
Save fencermonir/851ab2285d26e5657bf8123191ccd361 to your computer and use it in GitHub Desktop.
Composer starter file for wp plugin.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=========================================== | |
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": "[email protected]" | |
} | |
], | |
"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