PHP Classes

File: install.php

Recommend this page to a friend!
  Classes of Punto Waskito   PHP CRUD API   install.php   Download  
File: install.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP CRUD API
Provide API to manipulate database table records
Author: By
Last change:
Date: 3 years ago
Size: 300 bytes
 

Contents

Class file image Download
<?php

// download composer and install dependencies

if (!file_exists('composer.phar')) {
   
$composer = file_get_contents('https://getcomposer.org/composer.phar');
   
file_put_contents('composer.phar', $composer);
}
exec('php composer.phar install --ignore-platform-reqs');

include
'patch.php';