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
| composer install --ignore-platform-reqs |
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
| FROM php:latest | |
| RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | |
| RUN apt-get update && apt-get install -y git zlib1g-dev | |
| RUN docker-php-ext-install zip && docker-php-ext-enable zip | |
| RUN mkdir -p /var/www | |
| RUN composer create-project symfony/framework-standard-edition /var/www/ | |
| RUN chmod +x /var/www/bin/console | |
| EXPOSE 8080 | |
| CMD /var/www/bin/console server:run 0.0.0.0:8080 | |
| VOLUME /var/www/ |
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
| # deb cdrom:[Ubuntu-GNOME 16.04.2 LTS _Xenial Xerus_ - Release amd64 (20170215)]/ xenial main multiverse restricted universe | |
| # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
| # newer versions of the distribution. | |
| deb http://mirror.dhakacom.com/ubuntu-archive/ xenial main restricted | |
| # deb-src http://bd.archive.ubuntu.com/ubuntu/ xenial main restricted | |
| ## Major bug fix updates produced after the final release of the | |
| ## distribution. | |
| deb http://mirror.dhakacom.com/ubuntu-archive/ xenial-updates main restricted |
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
| MP4Box -cat a.mp4 -cat b.mp4 -cat c.mp4 -cat d.mp4 -cat e.mp4 -new joinedfile.mp4 |
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
| sudo service mysql stop && sudo killall -9 mysql && sudo killall -9 mysqld && sudo apt-get remove --purge mysql-server mysql-client mysql-common && sudo apt-get autoremove && sudo apt-get autoclean && sudo deluser mysql && sudo rm -rf /var/lib/mysql && sudo apt-get purge mysql-server-core-5.5 && sudo apt-get purge mysql-client-core-5.5 && sudo rm -rf /var/log/mysql && sudo rm -rf /etc/mysql |
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: PHP-CS-Fixer Symfony | |
| Program: php-cs-fixer | |
| Arguments: --rules=@Symfony --verbose fix $FileDir$/$FileName$ | |
| Working Directory: $ProjectFileDir$ |
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
| SET FOREIGN_KEY_CHECKS=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 app/console debug:router --show-controllers |
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
| youtube-dl --ignore-errors --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" yourPlaylistUrl |
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
| zend_extension=/usr/lib/php5/20121212/xdebug.so | |
| xdebug.remote_enable=1 | |
| xdebug.remote_handler=dbgp | |
| xdebug.remote_mode=req | |
| xdebug.remote_host=127.0.0.1 | |
| xdebug.remote_port=9000 | |
| xdebug.max_nesting_level=300 | |
| xdebug.idekey=PHPSTORM | |
| xdebug.remote_autostart=1 | |
| xdebug.profiler_enable=1 |