Skip to content

Commit

Permalink
ajout d'une commande pour indexer les talks
Browse files Browse the repository at this point in the history
  • Loading branch information
agallou committed Dec 18, 2016
1 parent 90d1de4 commit b870faa
Show file tree
Hide file tree
Showing 16 changed files with 939 additions and 113 deletions.
3 changes: 3 additions & 0 deletions .atoum.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?php

$runner->addTestsFromDirectory(__DIR__ . '/tests/units');
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ deps.lock
!var/sessions/.gitkeep
!var/SymfonyRequirements.php
/htdocs/bundles/
/bin/atoum
6 changes: 5 additions & 1 deletion app/config/parameters.yml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@ parameters:

# Github connection details
github_client_id: id
github_client_secret: secret
github_client_secret: secret

algolia_app_id: DVB92YWTPE
algolia_backend_api_key: 78e71e5r5c2Rb353f5a03376gb9878779
algolia_frontend_api_key: 74e71e5r5c2Rb353f5a03376gb9878777
4 changes: 4 additions & 0 deletions app/config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,7 @@ services:

app.paybox_factory:
class: AppBundle\Payment\PayboxFactory

app.algolia_client:
class: AlgoliaSearch\Client
arguments: [%algolia_app_id%, %algolia_backend_api_key%]
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"sensio/distribution-bundle": "^5.0",
"ccmbenchmark/ting_bundle": "^3.0",
"knpuniversity/oauth2-client-bundle": "^1.4",
"twig/extensions": "^1.4"
"twig/extensions": "^1.4",
"algolia/algoliasearch-client-php": "^1.12"
},
"scripts": {
"post-install-cmd": [
Expand Down Expand Up @@ -56,5 +57,9 @@
"email": "[email protected]"
}
],
"minimum-stability": "stable"
"minimum-stability": "stable",
"require-dev": {
"atoum/atoum": "^2.8",
"atoum/stubs": "^2.5"
}
}
Loading

0 comments on commit b870faa

Please sign in to comment.