Skip to content

Commit a556948

Browse files
committed
Update dependencies
1 parent 0564ae9 commit a556948

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
composer.lock
22
vendor/
3+
bin/

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ php:
55

66
install:
77
- composer self-update
8-
- composer install
8+
- composer update --prefer-lowest
99

1010
script:
11-
- php -d xdebug.max_nesting_level=255 vendor/bin/behat
12-
- vendor/bin/phpspec run
13-
- vendor/bin/phpcs -p --colors --standard=PSR2 src/ features/bootstrap/
14-
- vendor/bin/phpcs -p --colors --standard=vendor/jakubzapletal/php_codesniffer-rules/psr2-without-camel-case-method-name.xml spec/
11+
- php -d xdebug.max_nesting_level=255 bin/behat
12+
- bin/phpspec run
13+
- bin/phpcs -p --colors --standard=PSR2 src/ features/bootstrap/
14+
- bin/phpcs -p --colors --standard=vendor/jakubzapletal/php_codesniffer-rules/psr2-without-camel-case-method-name.xml spec/

composer.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phpzone/shell",
3-
"description": "",
3+
"description": "A command/script builder configured by YAML, based on PhpZone",
44
"type": "library",
55
"license": "MIT",
66
"authors": [
@@ -19,8 +19,8 @@
1919

2020
"require-dev": {
2121
"behat/behat": "~3.0",
22-
"phpspec/phpspec": "~2.2",
23-
"squizlabs/php_codesniffer": "~2.0",
22+
"phpspec/phpspec": "~2.2@beta",
23+
"squizlabs/php_codesniffer": "~2.3",
2424
"jakubzapletal/php_codesniffer-rules": "~0.1",
2525
"bossa/phpspec2-expect": "~1.0"
2626
},
@@ -37,5 +37,7 @@
3737
}
3838
},
3939

40-
"minimum-stability": "alpha"
40+
"config": {
41+
"bin-dir": "bin/"
42+
}
4143
}

phpzone.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
extensions:
22
PhpZone\Shell\Shell:
3-
'tests':
3+
tests:
44
description: Run all tests
55
script:
6-
- php -d xdebug.max_nesting_level=255 vendor/bin/behat
7-
- vendor/bin/phpspec run
8-
- vendor/bin/phpcs -p --colors --standard=PSR2 src/ features/bootstrap/
9-
- vendor/bin/phpcs -p --colors --standard=vendor/jakubzapletal/php_codesniffer-rules/psr2-without-camel-case-method-name.xml spec/
6+
- php -d xdebug.max_nesting_level=255 bin/behat
7+
- bin/phpspec run
8+
- bin/phpcs -p --colors --standard=PSR2 src/ features/bootstrap/
9+
- bin/phpcs -p --colors --standard=vendor/jakubzapletal/php_codesniffer-rules/psr2-without-camel-case-method-name.xml spec/

0 commit comments

Comments
 (0)