update deps even more :)
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
James 2020-11-16 16:01:32 +00:00
parent f696e28e49
commit e8ebef4cc4
2 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ name: testsuite
steps: steps:
- name: composer install - name: composer install
image: chialab/php image: chialab/php:7.4
commands: commands:
- composer install - composer install
volumes: volumes:
@ -13,21 +13,21 @@ steps:
path: /root/.composer/cache/ path: /root/.composer/cache/
- name: wait for test server - name: wait for test server
image: alpine image: alpine:3.12
commands: commands:
- echo "Waiting for server to launch on testserver:8080..." - echo "Waiting for server to launch on testserver:8080..."
- while ! nc -z testserver 8080; do sleep 0.1 ; done - while ! nc -z testserver 8080; do sleep 0.1 ; done
- echo "Ready!" - echo "Ready!"
- name: run tests - name: run tests
image: chialab/php image: chialab/php:7.4
commands: commands:
- URL=http://testserver:8080 vendor/bin/phpunit tests --testdox --color=always --no-interaction - URL=http://testserver:8080 vendor/bin/phpunit tests --testdox --color=always --no-interaction
services: services:
- name: testserver - name: testserver
image: node image: node:15.2.0-alpine3.12
detach: true detach: true
commands: commands:
- cd tests/server/ - cd tests/server/

View File

@ -3,8 +3,8 @@
"description": "Generate full sitemap report using spatie/crawler", "description": "Generate full sitemap report using spatie/crawler",
"type": "library", "type": "library",
"require": { "require": {
"php": "^7.3", "php": "^7.4",
"spatie/crawler": "^4.7", "spatie/crawler": "^5.0",
"cweagans/composer-patches": "~1.0" "cweagans/composer-patches": "~1.0"
}, },
"require-dev": { "require-dev": {