PHPackages                             fdevs/coming-soon - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. fdevs/coming-soon

AbandonedArchivedProject[Utility &amp; Helpers](/categories/utility)

fdevs/coming-soon
=================

A simple countdown system

1.0.0(10y ago)015MITCSSPHP &gt;=5.4

Since Jun 16Pushed 10y ago3 watchersCompare

[ Source](https://github.com/4devs/coming-soon)[ Packagist](https://packagist.org/packages/fdevs/coming-soon)[ RSS](/packages/fdevs-coming-soon/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (12)Versions (2)Used By (0)

Coming Soon Project
===================

[](#coming-soon-project)

Coming Soon project - a fully-functional Symfony2 application that you can use as the skeleton for your new applications.

Installation
------------

[](#installation)

create with [composer](https://getcomposer.org/)

```
$ composer create-project fdevs/coming-soon coming
$ cd coming
```

Setting up Permissions using ACL on a system that supports chmod +a, or use any other [method](http://symfony.com/doc/current/book/installation.html#checking-symfony-application-configuration-and-setup) to folders `var/cache var/logs var/spool`

```
$ rm -rf var/cache/*
$ rm -rf var/logs/*
$ rm -rf var/spool/*

$ HTTPDUSER=`ps aux | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\  -f1`
$ sudo chmod +a "$HTTPDUSER allow delete,write,append,file_inherit,directory_inherit" var/cache var/logs var/spool
$ sudo chmod +a "`whoami` allow delete,write,append,file_inherit,directory_inherit" var/cache var/logs var/spool
```

add you project to [web server](http://symfony.com/doc/current/cookbook/configuration/web_server_configuration.html)

add to cron task

```
$ bin/console swiftmailer:spool:send
```

Installs bundles web assets under a public web directory

```
$ bin/console assets:install
```

Use with Doctrine ORM
---------------------

[](#use-with-doctrine-orm)

- Install the [Doctrine Bundle](http://symfony.com/doc/master/bundles/DoctrineBundle/installation.html) and [Doctrine ORM](https://github.com/doctrine/doctrine2)

```
$ composer require doctrine/orm
$ composer require doctrine/doctrine-bundle
```

```
//app/AppKernel.php
