jordanjay29 I done this (I downloaded Flarum's embed extensions and removed everything except for the composer.json and bootstrap.php (I also removed everything from the bootstrap.php except the first <?php)
However, the extension doesn't show at the extensions list, I also noticed that manually installed extensions (Example: @JoshyPHP's MediaEmbed extension) also doesn't show at the list.
bootstrap.php
<?php
composer.json
{
"name": "mrpowergamerbr/flarum-ext-helloworld",
"description": "Hello World!",
"type": "flarum-extension",
"keywords": ["helloworld"],
"license": "Public Domain",
"authors": [
{
"name": "MrPowerGamerBR",
"email": "whatever@gmail.com"
}
],
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/flarum-ext-embed"
},
"require": {
"flarum/core": "^0.1.0-beta.5"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
},
"flarum-extension": {
"title": "HelloWorld",
"icon": {
"name": "code",
"backgroundColor": "#B9D233",
"color": "#fff"
}
}
}
}