Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Amsterdam/fixxx-schuldhulp
Browse files Browse the repository at this point in the history
  • Loading branch information
maartendekeizer committed Feb 26, 2018
2 parents 3c79f18 + ad82dcd commit e0449e5
Show file tree
Hide file tree
Showing 20 changed files with 2,426 additions and 566 deletions.
7 changes: 7 additions & 0 deletions .env.dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,10 @@ APP_SECRET=2f3e64e890898f416ab7980ef97fede2
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
#TRUSTED_HOSTS=localhost,example.com
###< symfony/framework-bundle ###

###> doctrine/doctrine-bundle ###
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
# Configure your db driver and server_version in config/packages/doctrine.yaml
DATABASE_URL=mysql://db_user:[email protected]:3306/db_name
###< doctrine/doctrine-bundle ###
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@

# IDE
.buildpath
.project
.settings/

# OS
.DS_Store
Thumbs.db
__MACOSX

# Composer
composer.phar

###> symfony/framework-bundle ###
.env
/public/bundles/
Expand Down
2 changes: 1 addition & 1 deletion bin/console
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php

use App\Kernel;
use GemeenteAmsterdam\FixxxSchuldhulp\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Debug\Debug;
Expand Down
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
{
"type": "project",
"license": "proprietary",
"license": "MPLv2",
"require": {
"php": "^7.1.3",
"ext-iconv": "*",
"sensio/framework-extra-bundle": "^5.1",
"symfony/console": "^4.0",
"symfony/flex": "^1.0",
"symfony/framework-bundle": "^4.0",
"symfony/lts": "^4@dev",
"symfony/maker-bundle": "^1.1",
"symfony/orm-pack": "^1.0",
"symfony/templating": "^4.0",
"symfony/validator": "^4.0",
"symfony/yaml": "^4.0"
},
"require-dev": {
Expand All @@ -22,12 +27,12 @@
},
"autoload": {
"psr-4": {
"App\\": "src/"
"GemeenteAmsterdam\\FixxxSchuldhulp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
"GemeenteAmsterdam\\FixxxSchuldhulp\\Tests\\": "tests/"
}
},
"replace": {
Expand Down
Loading

0 comments on commit e0449e5

Please sign in to comment.