pre-packaged Vagrant box that provides you a wonderful development environment
without requiring you to install PHP(7.0 ~ 7.2), a web server(Nginx or Apache),
and any other server software on your local machine.
php7 box:
{
"require-dev": {
"ytake/gardening": "~1.0"
}
}
(supported for virtualbox only)
https://atlas.hashicorp.com/ytake
- CentOS 7
- Git
- PHP 7.x (remi repository)
- Apache (2.4.6)
- Nginx (1.14)
- MySQL (5.7)
- Sqlite3
- PostgreSQL (10.1)
- Composer (1.5)
- Node.js (Gulp, webpack)
- Redis(4.0)
- Memcached
- Elasticsearch(6.1)
- Kibana(6.1)
- MongoDB
- Java(1.8)
- fluentd
- Couchbase(5.1)
- beanstalkd(1.10)
- RabbitMQ(3.7.2)
- Apache Cassandra(3.11)
- Apache Spark(2.2.1)
- Apache Kafka(1.0.0 / Confluent Platform)
[PHP Modules]
amqp
apc
apcu
ast
bcmath
bz2
calendar
cassandra
Core
couchbase
ctype
curl
date
dom
ds
event
exif
fileinfo
filter
ftp
gd
geoip
gettext
gmp
grpc
hash
iconv
igbinary
imagick
intl
json
ldap
libsodium
libxml
mbstring
mcrypt
memcached
memprof
mongodb
msgpack
mysqli
mysqlnd
openssl
pcntl
pcre
pcs
PDO
pdo_dblib
pdo_mysql
pdo_pgsql
pdo_sqlite
pdo_sqlsrv
pgsql
phalcon
Phar
phpiredis
posix
protobuf
rdkafka
readline
redis
Reflection
session
shmop
SimpleXML
soap
sockets
sodium
solr
SPL
sqlite3
sqlsrv
ssh2
standard
Stomp
swoole
sysvmsg
sysvsem
sysvshm
tokenizer
uopz
uuid
wddx
xdebug
xhprof
xml
xmlreader
xmlrpc
xmlwriter
xsl
yaml
Zend OPcache
zip
zlib
zmq
[Zend Modules]
Xdebug
Zend OPcache
included:
- friendsofphp/php-cs-fixer
- squizlabs/php_codesniffer
- phpmd/phpmd
- user: gardening
- password: 00:secreT,@
default:
xdebug.remote_enable = 1
xdebug.remote_connect_back = 1
xdebug.max_nesting_level = 512
xdebug.idekey = PHPSTORM
xdebug.remote_port = 9070
xdebug.remote_port = 9071
xdebug.remote_port = 9072
$ cd ~
$ git clone https://github.com/ytake/gardening.git gardening
setup.sh(Windows .bat) command from the gardening directory to create the vagrant.yaml configuration file.(~/.gardening hidden directory)
$ bash setup.sh
To install gardening directly into your project, require it using Composer:
$ composer require ytake/gardening --dev
use the make command to generate the Vagrantfile and gardening.yaml(or gardening.json) file in your project root.
$ ./vendor/bin/gardening gardening:setup
gardening.json:
$ ./vendor/bin/gardening gardening:setup --filetype=json
default Nginx
web_server: nginx
Apache can be selected if necessary
web_server: httpd
default PHP7.2
php-alternatives: "7.1"
(7.0 or 7.1 or 7.2)
folders:
- map: /path/to/yourProject
to: /home/vagrant/yourProjectName
many shared folders:
folders:
- map: /path/to/yourProject
to: /home/vagrant/yourProjectName
- map: /path/to/yourSecondfProject
to: /home/vagrant/yourSecondProjectName
sites:
- map: gardening.app.vagrant
to: /home/vagrant/yourProject/public
many sites:
sites:
- map: gardening.app.vagrant
to: /home/vagrant/yourProject/public
- map: gardening.second.app
to: /home/vagrant/yourSecondProject/public
use symfony by setting the type option:
sites:
- map: gardening.app.vagrant
to: /home/vagrant/yourProject/public
type: symfony
symfony: symfony2, 3 / symfony4: symfony4
sites:
- map: gardening.app.vagrant
to: /home/vagrant/yourProject/public
php: "7.1"
- map: gardening.second.app
to: /home/vagrant/yourSecondProject/public
php: "7.2"
use Fluentd by setting the fluentd option to true:
fluentd: true
use MongoDB by setting the mongodb option to true:
mongodb: true
use Elasticsearch by setting the elasticsearch option to true:
elasticsearch: true
use Kibana by setting the kibana option to true:
kibana: true
Access to Kibana http://vagrantIpAddress:5601/app/kibana
use Couchbase by setting the couchbase option to true:
couchbase: true
Access to admin console http://vagrantIpAddress:8091
use Apache Cassandra by setting the cassandra option to true:
cassandra: true
use Couchbase by setting the rabbitmq option to true:
rabbitmq: true
Access to rabbitmq management web ui http://vagrantIpAddress:15672
use Kafka by setting the confluent option to true:
confluent: true
By default, the following ports are forwarded to your gardening environment:
- SSH: 2222 → Forwards To 22
- HTTP: 8000 → Forwards To 80
- HTTPS: 44300 → Forwards To 443
- MySQL: 33060 → Forwards To 3306
- Postgres: 54320 → Forwards To 5432
- MongoDB: 47017 → Forwards To 27017
- Elasticsearch: 19200 → Forwards To 9200
- kibana: 56010 → Forwards To 5601
- Cassandra: 19042 → Forwards To 9024
- Kafka: 19092 → Forwards To 9092
Forwarding Additional Ports:
ports:
- send: 7777
to: 777