Skip to content

Commit

Permalink
Merge pull request #27 from Stanislas-Poisson/develop
Browse files Browse the repository at this point in the history
Add Builder
  • Loading branch information
Stanislas-Poisson authored Jun 19, 2018
2 parents b0fef11 + c485b48 commit ca9c8d5
Show file tree
Hide file tree
Showing 153 changed files with 96,730 additions and 108,777 deletions.
24 changes: 24 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
APP_NAME="French-zip-code"
APP_ENV=local
APP_KEY=some_key_in_base64
APP_DEBUG=false
APP_LOG_LEVEL=debug
APP_URL=http://localhost

DB_CONNECTION=mysql
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=frenchzipcode
DB_USERNAME=frenchzipcode
DB_PASSWORD=frenchzipcode

BROADCAST_DRIVER=null
CACHE_DRIVER=file
SESSION_COOKIE=frenchzipcode
SESSION_DRIVER=file
SESSION_LIFETIME=120
SESSION_SECURE_COOKIE=true
QUEUE_DRIVER=sync

GOOGLE_MAPS_KEY=ADD_YOUR_SERVICE_KEY_HERE
COM_URI="https://www.insee.fr/fr/information/2028040"
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/node_modules
/public/css/*
/public/js/*
/public/fonts/*
/public/mix-*
/public/hot
/public/storage
/storage/*.key
/vendor
/.idea
/.vagrant
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
.env
29 changes: 29 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php
$finder = PhpCsFixer\Finder::create()
->notPath('bootstrap/cache')
->notPath('node_modules')
->notPath('storage')
->notPath('vendor')
->in(__DIR__)
->name('*.php')
->notName('*.blade.php')
->ignoreDotFiles(true)
->ignoreVCS(true)
;

return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'binary_operator_spaces' => [
'align_double_arrow' => true
],
'array_syntax' => [
'syntax' => 'short'
],
'linebreak_after_opening_tag' => true,
'not_operator_with_successor_space' => true,
'ordered_imports' => true,
'phpdoc_order' => true,
])
->setFinder($finder)
;
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [2.0.0] - 2018-06-19
Changement intégrale des données d'origine, de la méthodologie de récupération ainsi que de la structure des données.
Consultez le README.md pour plus d'informations.

:warning: Compatibilité avec les versions inférieures non assuré.

------------

## [1.3.1] - 2018-05-29
### Changed
- Fixing the typographic department of _Haute-Savoie_ missing the **e** for _Haute_
Expand Down
36,115 changes: 0 additions & 36,115 deletions CSV/cities.csv

This file was deleted.

109 changes: 0 additions & 109 deletions CSV/departments.csv

This file was deleted.

15 changes: 0 additions & 15 deletions CSV/regions.csv

This file was deleted.

Loading

0 comments on commit ca9c8d5

Please sign in to comment.