Skip to content

Commit

Permalink
Updates to README
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Frandsen committed May 16, 2016
1 parent 7d31a22 commit 8096996
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 29 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ macports.sh
/.sass-cache
/bower_components
vpu.db
*.pid
*.pid
/cacert.pem
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,29 @@

# VisualPHPUnit

VisualPHPUnit is a visual front-end for PHPUnit. Current stable release is [v2.3.1](https://github.com/VisualPHPUnit/VisualPHPUnit/releases/tag/v2.3.1)
VisualPHPUnit is a visual front-end for PHPUnit.

## Versions

* [1.x](https://github.com/VisualPHPUnit/VisualPHPUnit/tree/1.x) Initial concept and code by [Matt Mueller](https://github.com/matthewmueller)
* [2.x](https://github.com/VisualPHPUnit/VisualPHPUnit/tree/2.x) A complete rewrite by [Nick Sinopoli](https://github.com/NSinopoli)
* [3.x](https://github.com/VisualPHPUnit/VisualPHPUnit/tree/3.x) A complete rewrite by [Johannes Skov Frandsen](https://github.com/localgod)

##Setup

* Checkout or download the VisualPHPUnit
* Run composer.php to install php dependecies.
* Run npm install
* Run bower install
* Run `./bin/vpu -c vpu.json -s` to start VisualPHPUnit with the build in php server.
* Run `./bin/vpu -c vpu.json -t` to stop VisualPHPUnit with the build in php server.

You may now browse localhost:8000 to acess the test suites.

You can update `./vpu.json` to add additional test suites.

You may run tests from the console like this `./bin/vpu -c vpu.json testfile.php`. You may append `-a` to archive your test results.

## Development

### Frontend
Expand Down
19 changes: 0 additions & 19 deletions box.json.dist

This file was deleted.

9 changes: 6 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"require" : {
"php" : ">=5.6",
"ext-pdo_sqlite" : "*",
"symfony/console" : "3.0.3",
"phpunit/phpunit" : "5.2.12",
"symfony/console" : "3.0.4",
"phpunit/phpunit" : "5.3.2",
"silex/silex" : "1.3.5",
"jdesrosiers/silex-cors-provider" : "0.1.5",
"symfony/finder" : "3.0.3",
"symfony/finder" : "3.0.4",
"igorw/config-service-provider" : "1.2.2",
"doctrine/dbal" : "2.5.4"
},
Expand All @@ -39,5 +39,8 @@
"psr-4" : {
"Visualphpunit\\" : "src"
}
},
"require-dev" : {
"ext-mbstring" : "*"
}
}
5 changes: 0 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,9 @@
"grunt-wiredep": "^2.0.0",
"jit-grunt": "^0.9.1",
"jshint-stylish": "^1.0.0",
"karma-jasmine": "*",
"karma-phantomjs-launcher": "*",
"time-grunt": "^1.0.0"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "grunt test"
}
}

0 comments on commit 8096996

Please sign in to comment.