Skip to content

Commit 80933b4

Browse files
author
Michael Zapf
committed
Merge branch 'develop'
2 parents 75b4659 + fcbb2c9 commit 80933b4

31 files changed

Lines changed: 3948 additions & 37 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,5 @@
3939

4040
# Backup entities generated with doctrine:generate:entities command
4141
**/Entity/*~
42+
43+
/vendor/

.travis.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
language: php
2+
3+
dist: trusty
4+
5+
sudo: false
6+
7+
php:
8+
- 7.1
9+
- 7.2
10+
11+
before_install:
12+
- phpenv config-rm xdebug.ini
13+
- echo "memory_limit=2048M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
14+
15+
install:
16+
- composer install --no-interaction --prefer-dist
17+
18+
#before_script:
19+
# # Run webserver
20+
# - (cd tests/Application && bin/console server:run 127.0.0.1:8080 -d web --env=test --quiet > /dev/null 2>&1 &)
21+
22+
script:
23+
- composer validate --strict
24+
- bin/ecs check ./src --no-progress-bar
25+
- bin/phpspec run --no-interaction -f dot
26+
# - bin/behat --strict -vvv --no-interaction || bin/behat --strict -vvv --no-interaction --rerun
27+

composer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "solutiondrive/multi-step-bundle",
3+
"description": "Symfony bundle helping to implement multi step user experience flows.",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "solutionDrive",
9+
"email": "entwickler@solutiondrive.de"
10+
}
11+
],
12+
"require": {},
13+
"require-dev": {
14+
"behat/behat": "^3.4",
15+
"phpspec/phpspec": "^4.3",
16+
"symplify/easy-coding-standard": "^3.2"
17+
},
18+
"config": {
19+
"bin-dir": "bin"
20+
},
21+
"autoload": {
22+
"psr-4": {
23+
"solutionDrive\\MultiStepBundle\\": "src/"
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)