Cleanup
This commit is contained in:
parent
bbdeffc3bf
commit
6187b2458f
4 changed files with 0 additions and 1483 deletions
|
|
@ -1,5 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
rm -Rf docs/source/API/API
|
||||
/usr/bin/env php vendor/bin/sami.php update sami_configuration.php
|
||||
sh -c "cd docs && make clean && make html"
|
||||
1440
composer.lock
generated
1440
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,38 +0,0 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is largely inspired by the one written for the Symfony framework.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Get all dependencies needed for Phraseanet (Windows Version)
|
||||
*
|
||||
* Set the variables gitDir and phpDir with a trailing slash if it is not set in Windows' %PATH%
|
||||
* For example :
|
||||
* $phpDir="c:/php5310/"
|
||||
*/
|
||||
call_user_func(function()
|
||||
{
|
||||
$phpDir = "";
|
||||
|
||||
chdir(__DIR__);
|
||||
|
||||
set_time_limit(0);
|
||||
|
||||
$composer = __DIR__ . '/composer.phar';
|
||||
|
||||
if ( ! file_exists($composer))
|
||||
{
|
||||
file_put_contents($composer, file_get_contents('http://getcomposer.org/installer'), LOCK_EX);
|
||||
system($phpDir . 'php ' . $composer . ' install');
|
||||
}
|
||||
|
||||
system($phpDir . 'php ' . $composer . ' self-update');
|
||||
system($phpDir . 'php ' . $composer . ' update');
|
||||
});
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue