1. Go to this page and download the library: Download box-project/console 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/ */
box-project / console example snippets
use Box\Component\Console\Application;
use Symfony\Component\DependencyInjection\ContainerBuilder;
$container = new ContainerBuilder();
$application = new Application($container);
$container->compile()
$application->run();
use Box\Component\Console\Application;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\ContainerInterface;
$container = new ContainerBuilder();
$app = new Application($container);
$container->compile();
$app->run();
use Box\Component\Console\Loader\Resource;
use Box\Component\Console\Loader\ResourceCollection;
use Box\Component\Console\Loader\ResourceCollectionLoader;
use Box\Component\Console\Loader\ResourceSupport;
use Symfony\Component\Config\Exception\FileLoaderLoadException;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
// load files from the current directory
$locator = new FileLocator('.');
// create a loader for xml and yaml files
$loader = new ResourceCollectionLoader(
new LoaderResolver(
array(
new XmlFileLoader($container, $locator),
new YamlFileLoader($container, $locator)
)
)
);
// load the first available file from a collection of possible resources
$loader->load(
new ResourceCollection(
array(
new Resource('example.xml'),
new ResourceSupport('example.xml.dist', 'example.xml'),
new Resource('example.yml'),
new ResourceSupport('example.yml.dist', 'example.yml')
)
)
);
$loader->loadOptional(
new ResourceCollection(
array(
new Resource('example.xml'),
new ResourceSupport('example.xml.dist', 'example.xml'),
new Resource('example.yml'),
new ResourceSupport('example.yml.dist', 'example.yml')
)
)
);
$definition = new Definition('My\Command');
$definition->addTag('box.console.command');
$container->setDefinition('my_command', $definition);
$definition = new Definition('My\Helper');
$definition->addTag('box.console.helper');
$container->setDefinition('my_helper', $definition);
$definition = new Definition('My\Subscriber');
$definition->addTag('box.console.event.subscriber');
$container->setDefinition('my_subscriber', $definition);
$app->registerExtension(new MyExtension());
use Box\Component\Console\ApplicationCache;
use Symfony\Component\DependencyInjection\ContainerBuilder;
ApplicationCache::bootstrap(
'/path/to/cache/example.php',
function (ContainerBuilder $container, ApplicationCache $app) {
// first-run container building
// register extensions using $app
},
'MyCachedContainer', // name of cached container class
true // toggle debugging
);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.