This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| before_script: | |
| - curl -o APC-3.1.10.tgz http://pecl.php.net/get/APC-3.1.10.tgz | |
| - tar -xzf APC-3.1.10.tgz | |
| - sh -c "cd APC-3.1.10 && phpize && ./configure && make && sudo make install && cd .." | |
| - rm -Rf APC-3.1.10 | |
| - rm APC-3.1.10.tgz | |
| - echo "extension=apc.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"` | |
| - phpenv rehash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| language: php | |
| php: | |
| - 5.3 | |
| - 5.4 | |
| before_script: | |
| - sudo apt-get install apache2 | |
| - sudo a2enmod actions | |
| - sudo a2enmod rewrite |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if (in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', '::1'))) { | |
| apc_clear_cache(); | |
| apc_clear_cache('user'); | |
| apc_clear_cache('opcode'); | |
| echo json_encode(array('success' => true)); | |
| } else { | |
| die('SUPER TOP SECRET'); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Kunstmaan\Hosting\BillSplitBundle\Command; | |
| use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; | |
| use Ddeboer\DataImportBundle\Writer\CsvWriter; | |
| use SimpleXMLElement; | |
| use SplFileObject; | |
| use SplFileInfo; | |
| use Symfony\Component\Console\Input\InputArgument; | |
| use Symfony\Component\Console\Input\InputInterface; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "kunstmaan/khosting", | |
| "description": "A Bill Splitting Commandline Application Using Symfony 2.1", | |
| "autoload": { | |
| "psr-0": { "": "src/" } | |
| }, | |
| "require": { | |
| "php": ">=5.3.2", | |
| "symfony/symfony": "2.1.*", | |
| "doctrine/orm": "2.2.0", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Kunstmaan\Hosting\BillSplitBundle\Command; | |
| use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; | |
| use SimpleXMLElement; | |
| use SplFileObject; | |
| use SplFileInfo; | |
| use Symfony\Component\Console\Input\InputArgument; | |
| use Symfony\Component\Console\Input\InputInterface; | |
| use Symfony\Component\Console\Input\InputOption; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Kunstmaan\Hosting\BillSplitBundle\Command; | |
| use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; | |
| use SimpleXMLElement; | |
| use SplFileObject; | |
| use SplFileInfo; | |
| use Symfony\Component\Console\Input\InputArgument; | |
| use Symfony\Component\Console\Input\InputInterface; | |
| use Symfony\Component\Console\Input\InputOption; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Kunstmaan\Hosting\BillSplitBundle\Command; | |
| use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; | |
| use SimpleXMLElement; | |
| use SplFileObject; | |
| use SplFileInfo; | |
| use Symfony\Component\Console\Input\InputArgument; | |
| use Symfony\Component\Console\Input\InputInterface; | |
| use Symfony\Component\Console\Input\InputOption; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| projects: | |
| projectx: 222222222 | |
| projecty: 333333333 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| servers: | |
| server1.kunstmaan.be: | |
| type: dedicated | |
| maconomy: 1111111111 | |
| server2.kunstmaan.be: | |
| type: shared |