1. Go to this page and download the library: Download kktsvetkov/assoto 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/ */
kktsvetkov / assoto example snippets
/* adds my.js as javascript file asset */
Assoto\JS::file('my.js');
/* adds my.css as stylesheet asset */
Assoto\CSS::stylesheet('my.css');
/* adds the <title> tag as asset */
Assoto\HTML::title('Hello World!');
Assoto\Meta::link(
'https://github.com/kktsvetkov/Assoto/commits/master.atom',
'alternative',
'', // empty id, let the id be auto-generated
array(
'type' => 'application/atom+xml',
'title' => 'Recent Commits to Assoto'
));
Assoto\Meta::link(
'//assets-cdn.github.com/apple-touch-icon-114x114.png',
'apple-touch-icon',
'', // empty id, let the id be auto-generated
array('sizes' => '114x114')
);
Assoto\JS::file(
'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js',
'', // empty id, let the id be auto-generated
array(
'integrity' => 'sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa',
'crossorigin' => 'anonymous',
'async'
)
);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.