Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
francescobianco committed Jul 5, 2022
1 parent 376cc0c commit 64f2862
Show file tree
Hide file tree
Showing 7 changed files with 766 additions and 12 deletions.
14 changes: 10 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@

bash:
docker-compose run --rm php bash
@docker-compose run --rm php bash

build:
docker-compose build
@docker-compose build

install:
docker-compose run --rm composer install
@docker-compose run --rm composer install

update:
@docker-compose run --rm composer update

dump-autoload:
docker-compose run --rm composer dump-autoload
@docker-compose run --rm composer dump-autoload

imap2-coverage:
@docker-compose run --rm imap2 ./vendor/bin/phpunit tests --coverage-html docs/coverage
Expand Down Expand Up @@ -95,5 +98,8 @@ test-signatures:
test-polyfill:
@docker-compose run --rm phpunit tests --filter PolyfillTest

test-parse-headers:
@docker-compose run --rm phpunit tests --filter PolyfillTest::testRfc822ParseHeaders

test-special:
@docker-compose run --rm phpunit tests --filter HeaderInfoTest::testSanitizeAddress
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
"url": "https://github.com/javanile/webrequest"
}
},
"require": {
"zbateson/mail-mime-parser": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^6.5"
}
Expand Down
Loading

0 comments on commit 64f2862

Please sign in to comment.