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
|
|
|
|
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
|
2020-01-01 19:55:33 +01:00
|
|
|
|
|
|
|
cd /tmp/testing-with-real-projects
|
|
|
|
|
2020-01-02 18:42:33 +01:00
|
|
|
git clone git@github.com:ocramius/ProxyManager.git
|
2020-01-01 19:55:33 +01:00
|
|
|
cd ProxyManager
|
|
|
|
composer install
|
2020-01-01 23:45:28 +01:00
|
|
|
~/project/psalm --monochrome
|
2020-01-01 19:55:33 +01:00
|
|
|
|
|
|
|
cd /tmp/testing-with-real-projects
|
|
|
|
|
2020-01-02 17:09:38 +01:00
|
|
|
git clone git@github.com:muglug/you-are-using-it-wrong.git
|
2020-01-01 19:55:33 +01:00
|
|
|
cd you-are-using-it-wrong
|
2020-01-02 17:09:38 +01:00
|
|
|
git checkout 5d29951fd0c49570e566c3dd5118eb18dc9c67bb
|
2020-01-01 19:55:33 +01:00
|
|
|
composer install
|
2020-01-01 23:45:28 +01:00
|
|
|
~/project/psalm --monochrome
|