Skip to content

Commit

Permalink
Ajout du parametre database a la commande dump, et ajout de la config…
Browse files Browse the repository at this point in the history
… pour load les services
  • Loading branch information
Guillaume DUBOST committed Mar 29, 2019
1 parent ee0e094 commit 39c450c
Show file tree
Hide file tree
Showing 14 changed files with 8,614 additions and 14 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ vendor/
# phpstorm
.idea

# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
composer.lock

###> symfony/framework-bundle ###
/.env.local
/.env.local.php
Expand Down
2 changes: 1 addition & 1 deletion TestApp/config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
ETNA\Doctrine\EtnaDoctrineBundle::class => ['all' => true]
ETNA\Doctrine\EtnaDoctrineBundle::class => ['testing' => true]
];
4 changes: 0 additions & 4 deletions TestApp/config/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,3 @@ services:

# add more service definitions when explicit configuration is needed
# please note that last definitions always *replace* previous ones

etna_debug_service:
public: true
class: 'ETNA\Doctrine\Services\EtnaDoctrineService'
Empty file removed TestApp/src/Controller/.gitignore
Empty file.
Empty file removed TestApp/src/Entity/.gitignore
Empty file.
Empty file removed TestApp/src/Migrations/.gitignore
Empty file.
2 changes: 2 additions & 0 deletions behat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ default:
Behat\Symfony2Extension:
kernel:
class: TestApp\Kernel
env: testing

ci:
suites:
Expand Down Expand Up @@ -53,3 +54,4 @@ ci:
Behat\Symfony2Extension:
kernel:
class: TestApp\Kernel
env: testing
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</exec>
</target>
<target name="phpstan">
<exec executable="phpstan" passthru="true">
<exec executable="phpstan" passthru="true" checkreturn="true">
<arg value="analyze"/>
<arg path="src/"/>
<arg value="--level=7"/>
Expand Down
Loading

0 comments on commit 39c450c

Please sign in to comment.