ytake / gardening
Vagrant(centos7) for web developers.
Fund package maintenance!
ytake
Installs: 11 312
Dependents: 0
Suggesters: 0
Security: 0
Stars: 26
Watchers: 4
Forks: 8
Open Issues: 1
Language:Shell
Requires
- php: ^5.5||^7.0
- symfony/console: ~2.3|~3.0|~4.0
- symfony/yaml: ~2.3|~3.0|~4.0
Requires (Dev)
- phpunit/phpunit: ^6.0
- symfony/var-dumper: ^3.0|^4.0
This package is auto-updated.
Last update: 2024-11-04 23:47:41 UTC
README
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)
boxes
https://atlas.hashicorp.com/ytake
Included Software
- 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)
included php extensions
[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
Composer global
included:
- friendsofphp/php-cs-fixer
- squizlabs/php_codesniffer
- phpmd/phpmd
MySQL and PostgreSQL, RabbitMQ
- user: gardening
- password: 00:secreT,@
Xdebug
default:
xdebug.remote_enable = 1
xdebug.remote_connect_back = 1
xdebug.max_nesting_level = 512
xdebug.idekey = PHPSTORM
php7.0
xdebug.remote_port = 9070
php7.1
xdebug.remote_port = 9071
php7.2
xdebug.remote_port = 9072
Install Gardening Box
case 1, your "home" directory
$ 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
case2, Per Project Installation
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
Configuration
Choose Web Server
default Nginx
web_server: nginx
Apache can be selected if necessary
web_server: httpd
Choose PHP version
default PHP7.2
php-alternatives: "7.1"
(7.0 or 7.1 or 7.2)
Configuring Shared Folders
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
Configuring Sites
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
Multiple PHP Versions
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"
Optional
Fluentd
use Fluentd by setting the fluentd option to true:
fluentd: true
MongoDB
use MongoDB by setting the mongodb option to true:
mongodb: true
Elasticsearch
use Elasticsearch by setting the elasticsearch option to true:
elasticsearch: true
Kibana
use Kibana by setting the kibana option to true:
kibana: true
Access to Kibana http://vagrantIpAddress:5601/app/kibana
Couchbase
use Couchbase by setting the couchbase option to true:
couchbase: true
Access to admin console http://vagrantIpAddress:8091
Apache Cassandra
use Apache Cassandra by setting the cassandra option to true:
cassandra: true
RabbitMQ
use Couchbase by setting the rabbitmq option to true:
rabbitmq: true
Access to rabbitmq management web ui http://vagrantIpAddress:15672
Apache Kafka (Confluent Platform)
use Kafka by setting the confluent option to true:
confluent: true
Ports
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