| gitflow | git |
|---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Doctrine Configuration | |
| doctrine: | |
| dbal: | |
| default_connection: default | |
| connections: | |
| default: | |
| driver: "%database_driver%" | |
| host: "%database_host%" | |
| port: "%database_port%" | |
| dbname: "%database_name%" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $user = $this->getUser(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| orm: | |
| auto_generate_proxy_classes: "%kernel.debug%" | |
| entity_managers: | |
| default: | |
| auto_mapping: true | |
| naming_strategy: doctrine.orm.naming_strategy.underscore | |
| second_level_cache: | |
| enabled: true | |
| log_enabled: %kernel.debug% | |
| region_cache_driver: apc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // src/MyBundle/EventListener/RequestListener.php | |
| namespace MyBundle\EventListener; | |
| use Symfony\Component\HttpKernel\Event\GetResponseEvent; | |
| class RequestListener | |
| { | |
| protected $twig; |
I hereby claim:
- I am the-don-himself on github.
- I am the_don_himself (https://keybase.io/the_don_himself) on keybase.
- I have a public key ASA5FIK0ouZjqVWQY9R4KnNF17uB88G2wrIwmw6Zw5uZWQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import env from './config/environment' | |
| import crypto from 'crypto'; | |
| const { private_key, keyid, api_key } = env.GRIFFIN | |
| public getMessageSignaturesHeaders = async ( | |
| request_method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH', | |
| request_path: string, | |
| request_body?: object, | |
| request_query?: string, |