2019-06-15 15:04:52 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
|
|
|
cd /tmp/
|
|
|
|
mkdir testing-with-real-projects
|
|
|
|
cd testing-with-real-projects
|
|
|
|
|
2020-01-01 18:32:03 +01:00
|
|
|
git clone git@github.com:sebastianbergmann/phpunit.git
|
2019-06-15 15:04:52 +02:00
|
|
|
cd phpunit
|
2020-01-01 18:32:03 +01:00
|
|
|
git checkout 1c2bc44 # bugfix
|
2019-06-15 15:04:52 +02:00
|
|
|
composer install
|
2019-08-13 06:01:35 +02:00
|
|
|
~/project/build/psalm.phar --config=.psalm/config.xml --monochrome --show-info=false
|
2019-07-09 13:39:03 +02:00
|
|
|
~/project/build/psalm.phar --config=.psalm/static-analysis.xml --monochrome
|
2019-12-29 02:51:39 +01:00
|
|
|
|
|
|
|
cd /tmp/testing-with-real-projects
|
|
|
|
|
2019-12-29 17:11:07 +01:00
|
|
|
git clone git@github.com:muglug/collections.git
|
2019-12-29 02:51:39 +01:00
|
|
|
cd collections
|
|
|
|
composer install
|
|
|
|
~/project/psalm --monochrome --show-info=false
|