Sistema web para crear proyecto web nuevo
This commit is contained in:
10
setup/composer.php
Normal file
10
setup/composer.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
$filename = implode(DIRECTORY_SEPARATOR, [
|
||||
dirname(__DIR__),
|
||||
'vendor',
|
||||
'autoload.php'
|
||||
]);
|
||||
if (!file_exists($filename)) {
|
||||
throw new Exception('Missing composer install.');
|
||||
}
|
||||
include_once $filename;
|
Reference in New Issue
Block a user