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

Mise en place de Behat (close #93) #134

Closed
wants to merge 7 commits into from
Closed
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
7 changes: 7 additions & 0 deletions .coke
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# coding standard
standard=PSR2

# Path to parse
src

# Path to ignore
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## Application files
app/config.php
bin/*
behat.local.yml
behat.yml
deps.lock
vendor/
tmp/*
Expand All @@ -14,6 +16,8 @@ nbproject/
.settings/
# SublimeText
*.sublime-*
# PhpStorm
*.idea

# Backup files
*.*~
Expand Down
7 changes: 7 additions & 0 deletions behat.local.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default:
context:
parameters:
base_url: http://aperophp.local
extensions:
Behat\MinkExtension\Extension:
base_url: http://aperophp.local
1 change: 1 addition & 0 deletions bin/atoum
1 change: 1 addition & 0 deletions bin/behat
1 change: 1 addition & 0 deletions bin/phpspec
33 changes: 21 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,25 @@
"description" : "Source code for aperophp.net website",
"licence" : "GPL-3.0+",
"minimum-stability" : "dev",
"config": {
"bin-dir": "bin/"
},
"require": {
"silex/silex" : "1.0.*",
"doctrine/common" : "2.4.*",
"doctrine/dbal" : "2.4.*",
"doctrine/common" : "2.4.x-dev",
"doctrine/dbal" : "2.4.x-dev",
"twig/twig" : "dev-master",
"twig/extensions" : "dev-master",
"symfony/class-loader" : "2.1.x",
"symfony/form" : "2.1.x",
"symfony/validator" : "2.1.x",
"symfony/translation" : "2.1.x",
"symfony/config" : "2.1.x",
"symfony/browser-kit" : "2.1.x",
"symfony/console" : "2.1.x",
"symfony/css-selector" : "2.1.x",
"symfony/twig-bridge" : "2.1.x",
"symfony/class-loader" : "2.2.x",
"symfony/routing" : "2.2.x",
"symfony/form" : "2.2.x",
"symfony/validator" : "2.2.x",
"symfony/translation" : "2.2.x",
"symfony/config" : "2.2.x",
"symfony/browser-kit" : "2.2.x",
"symfony/console" : "2.2.x",
"symfony/css-selector" : "2.2.x",
"symfony/twig-bridge" : "2.2.x",
"swiftmailer/swiftmailer" : "dev-master",
"twitter/bootstrap" : "2.0.4",
"FortAwesome/Font-Awesome" : "master",
Expand All @@ -26,7 +30,12 @@
"michelf/php-markdown" : "1.3.x-dev"
},
"require-dev": {
"atoum/atoum" : "dev-master"
"atoum/atoum" : "dev-master",
"behat/behat" : "2.4.*@stable",
"behat/mink-extension" : "1.0.*@stable",
"behat/mink-goutte-driver" : "1.0.*@stable",
"sensiolabs/behat-page-object-extension" : "*",
"bossa/phpspec2-expect" : "dev-master"
},
"autoload": {
"psr-0": {
Expand Down
Loading