1. Go to this page and download the library: Download mborne/remote-git library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$options = new FindOptions();
// Use '_me_' on github to zations(array('symfony','FriendsOfSymfony'));
$projects = $client->find($options);
$options = new FindOptions();
$options->setUsers(array('mborne'));
$filter = new ComposerProjectFilter($client);
$filter->setType('library');
$options->setFilter($filter);
$projects = $client->find($options);
$options = new FindOptions();
$options->setUsers(array('mborne'));
$filterCollection = new FilterCollection();
// filter according to composer.json
$composerFilter = new ComposerProjectFilter($client);
$composerFilter->setType('library');
$filterCollection->addFilter($composerFilter);
// filter according to README.md
$filterCollection->addFilter(new RequiredFileFilter(
$client,
'README.md'
));
$options->setFilter($filterCollection);
$projects = $client->find($options);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.