Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Builder #27

Merged
merged 2 commits into from
Jun 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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