Skip to content

Commit

Permalink
Merge pull request #52 from IonBazan/composer-lock-3.2
Browse files Browse the repository at this point in the history
3.2: remove composer.lock and allow PHP 5.3
  • Loading branch information
Janusz Żukowicz authored Apr 27, 2018
2 parents eb10af7 + e4c3067 commit 62cf20a
Show file tree
Hide file tree
Showing 11 changed files with 225 additions and 1,286 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
vendor/
examples/captcha.jpeg
.idea
composer.lock
9 changes: 9 additions & 0 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
preset: recommended

risky: false

enabled:
- long_array_syntax

disabled:
- short_array_syntax
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: php

dist: precise

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2

cache:
directories:
- $HOME/.composer/cache

install:
- composer install --no-interaction --no-progress

script:
- composer validate --strict --no-check-lock
- vendor/bin/phpunit tests
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
],
"require": {
"php" : ">=5.4",
"php" : ">=5.3",
"ext-soap": "*"
},
"require-dev": {
Expand All @@ -20,6 +20,9 @@
"autoload":{
"psr-4": {
"GusApi\\": "src/GusApi/"
}
},
"classmap": [
"src/JsonSerializable.php"
]
}
}
Loading

0 comments on commit 62cf20a

Please sign in to comment.