Skip to content

Commit

Permalink
Merge branch 'master' into hotfix/translator-caching
Browse files Browse the repository at this point in the history
  • Loading branch information
DASPRiD committed Sep 20, 2012
2 parents e53680a + afac243 commit 222b1c6
Show file tree
Hide file tree
Showing 506 changed files with 5,721 additions and 2,926 deletions.
77 changes: 77 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# CONTRIBUTING

## RESOURCES

If you wish to contribute to Zend Framework, please be sure to
read/subscribe to the following resources:

- Coding Standards:
http://framework.zend.com/wiki/display/ZFDEV2/Coding+Standards
- ZF Git Guide:
[README-GIT.md](README-GIT.md)
- Contributor's Guide:
http://framework.zend.com/participate/contributor-guide
- ZF Contributor's mailing list:
Archives: http://zend-framework-community.634137.n4.nabble.com/ZF-Contributor-f680267.html
Subscribe: [email protected]
- ZF Contributor's IRC channel:
#zftalk.dev on Freenode.net

If you are working on new features, or refactoring an existing
component, please create a proposal. You can do this in on the RFC's
page, http://framework.zend.com/wiki/display/ZFDEV2/RFC%27s.

## RUNNING TESTS

To run tests:

- Make sure you have a recent version of PHPUnit installed; 3.6.0
minimally.
- Enter the `tests/` subdirectory.
- Execute PHPUnit, providing a path to a component directory for which
you wish to run tests, or a specific test class file.

```sh
% phpunit ZendTest/Http
% phpunit ZendTest/Http/Header/EtagTest.php
```

- You may also provide the `--group` switch; in such cases, provide the
top-level component name:

```sh
% phpunit --group Zend_Http
```

This will likely lead to errors, so it's usually best to specify a
specific component in which to run test:

```sh
% phpunit --group ZF-XYZ Zend/Http
```
- Alternately, use the `run-tests.php` script. This can be executed with no
arguments to run all tests:

```sh
% php run-tests.php
```

You can also provide top-level component names to run tests for individual
components or several components at a time. The component name is the the
component namespace, without the `Zend\` prefix:

```sh
% php run-tests Mvc
```

```sh
% php run-tests ModuleManager Mvc View Navigation
```

You can turn on conditional tests with the TestConfiguration.php file.
To do so:

- Enter the `tests/` subdirectory.
- Copy `TestConfiguration.php.dist` file to `TestConfiguration.php`
- Edit `TestConfiguration.php` to enable any specific functionality you
want to test, as well as to provide test values to utilize.
2 changes: 0 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ and add the library directory to your PHP `include_path`. To use
components in the extras library, add the `extras/library` directory to
your PHP `include_path` as well.

If you would like to use Zend_Tool, simply add `bin/zf.bat` (for Windows)
or `bin/zf.sh` (for anything else) to your system executable path.

## SYSTEM REQUIREMENTS
-------------------
Expand Down
64 changes: 0 additions & 64 deletions README-DEV.md

This file was deleted.

Loading

0 comments on commit 222b1c6

Please sign in to comment.