/**
  * Display the screen.
  *
  * @since 0.2.0
  */
 public function render_screen()
 {
     $permalink = satispress_get_packages_permalink();
     $packages = SatisPress::instance()->get_packages();
     include SATISPRESS_DIR . 'views/screen-settings.php';
 }
echo esc_html($permalink);
?>
</a>
		</p>
		<p>
			<?php 
_e('Add it to the <code>repositories</code> list in your composer.json:', 'satispress');
?>
		</p>

<pre class="satispress-repository-snippet"><code>{
	"repositories": [
		{
			"type": "composer",
			"url": "<?php 
echo satispress_get_packages_permalink(array('base' => true));
?>
"
		}
	]
}</code></pre>

		<form action="options.php" method="post">
			<?php 
settings_fields('satispress');
?>
			<?php 
do_settings_sections('satispress');
?>
			<?php 
submit_button();