hey I don't no how to make PocketMine.phar with Website or devtools i am new around Plugin and others kinds stuff can u please help me I modifity PocketMine than I want back it to phar I don't no how..
You can use phar extract -f <file_name> in shell command prompt if on Linux/Mac. To re-phar the file, it's a bit more complicated. You'll have to edit your system's binary's settings (usually in a file like php.ini), setting phar.readonly = false. Then, use the PHP Phar class to create a phar file and add files/directories to it, like so: PHP: <?php$phar = new Phar('new.phar');$phar->buildFromDirectory('./TargetDirectory');
Uhm, ok. You may have to do a bit of work on your end to try to figure it out, I can't do much from over here
First, do you already have PocketMine in the edited source, or is it still a .phar file? If it is already edited and is in source form, you can use the DevTools /makeserver command to create a phar, then add the phar to your server's main directory.