elao / symfony-standard
The elao/symfony-standard project
Installs: 314
Dependents: 0
Suggesters: 0
Security: 0
Stars: 18
Watchers: 22
Forks: 8
Open Issues: 2
Type:project
Requires
- php: >=5.5.9
- doctrine/doctrine-bundle: ^1.6
- doctrine/doctrine-cache-bundle: ^1.2
- doctrine/orm: ^2.5
- incenteev/composer-parameter-handler: ^2.0
- sensio/distribution-bundle: ^5.0
- sensio/framework-extra-bundle: ^3.0.2
- symfony/monolog-bundle: ^3.0.2
- symfony/polyfill-apcu: ^1.0
- symfony/swiftmailer-bundle: ^2.3.10
- symfony/symfony: 3.2.*
Requires (Dev)
- behat/behat: ^3.1
- behat/mink: ^1.7
- behat/mink-browserkit-driver: ^1.3
- behat/mink-extension: ^2.2
- behat/mink-selenium2-driver: ^1.3
- behat/symfony2-extension: ^2.1
- doctrine/doctrine-fixtures-bundle: ^2.3
- phpunit/phpunit: ^5.3
- sensio/generator-bundle: ^3.0
- symfony/phpunit-bridge: ^3.0
This package is not auto-updated.
Last update: 2020-01-24 16:43:35 UTC
README
This project is deprecated, please use https://github.com/manala/manalize instead.
Requirements
Note: The
$
stands for your machine CLI, while the⇒
stands for the VM CLI
Installation
Create the project and access to its directory (where [app] is your application name)
$ composer create-project elao/symfony-standard [app] dev-master --prefer-dist --no-install
$ cd [app]
Install and prepare the project dependencies
$ make setup
Customize
TODO
Usage
Your app is accessible via http://app.vendor.dev/app_dev.php
Faq
VirtualBox DHCP Server
A host only network interface you're attempting to configure via DHCP already has a conflicting host only adapter with DHCP enabled. The DHCP on this adapter is...
$ VBoxManage dhcpserver remove --netname HostInterfaceNetworking-vboxnet0
OSX DNS Cache
If you virtual machine does not answer, or ping to 127.0.53.53
On Yosemite 10.10 to 10.10.3
$ sudo discoveryutil mdnsflushcache
$ sudo discoveryutil udnsflushcaches
Before Yosemite and on Yosemite 10.10.4
$ sudo killall -HUP mDNSResponder
See: https://support.apple.com/kb/HT202516
OSX ssh key forwarding
$ ssh-add -K ~/.ssh/[your_private_key]
Vagrant process crash
An action 'foo' was attempted on the machine 'bar', but another process is already executing an action on the machine. Vagrant locks each machine for access by only one process at a time. Please wait until the other Vagrant process finishes modifying this machine, then try again.
Kill vagrant ruby process, and try again
$ killall ruby
Nfs shares without password confirmation
Edit /etc/sudoers.d/vagrant
$ sudo vi /etc/sudoers.d/vagrant
Copy/paste the following lines:
Cmnd_Alias VAGRANT_EXPORTS_ADD = /usr/bin/tee -a /etc/exports
Cmnd_Alias VAGRANT_NFSD = /sbin/nfsd restart
Cmnd_Alias VAGRANT_EXPORTS_REMOVE = /usr/bin/sed -E -e /*/ d -ibak /etc/exports
%admin ALL=(root) NOPASSWD: VAGRANT_EXPORTS_ADD, VAGRANT_NFSD, VAGRANT_EXPORTS_REMOVE