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

Data fixtures & tests #10

Open
wants to merge 6 commits into
base: version_1.5
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions Symfony/app/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public function registerBundles()
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
$bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
$bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
$bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle();
}

return $bundles;
Expand Down
2 changes: 1 addition & 1 deletion Symfony/app/config/routing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# All actions and pages of the app use the same prefix.
# The parameters of each route are specified in the code using annotations, which is faster and more
# convenient for small scale apps.
wide:
pde:
resource: "@PDEBundle/Controller/"
type: annotation
prefix: /
Expand Down
6 changes: 4 additions & 2 deletions Symfony/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@
"docker-php/docker-php": "^1.24",
"splitbrain/php-archive": "^1.0",
"clue/tar-react": "^0.1.0",
"react/event-loop": "^0.4.2"
"react/event-loop": "^0.4.2",
"phpunit/phpunit": "^4.8"
},
"require-dev": {
"sensio/generator-bundle": "~3.0",
"symfony/phpunit-bridge": "~2.7"
"symfony/phpunit-bridge": "~2.7",
"doctrine/doctrine-fixtures-bundle": "^2.3"
},
"scripts": {
"post-install-cmd": [
Expand Down
Loading