php-censor/README.md

194 lines
6.1 KiB
Markdown
Raw Normal View History

2017-01-09 14:14:04 +01:00
[![PHPCensor](http://phpci.corpsee.com/build-status/image/9?branch=master&label=PHPCensor&style=flat-square)](http://phpci.corpsee.com/build-status/view/9?branch=master)
[![TravisCI](https://img.shields.io/travis/corpsee/php-censor/master.svg?label=TravisCI&style=flat-square)](https://travis-ci.org/corpsee/php-censor?branch=master)
[![Latest Version](https://img.shields.io/packagist/v/corpsee/php-censor.svg?label=Version&style=flat-square)](https://packagist.org/packages/corpsee/php-censor)
[![Total downloads](https://img.shields.io/packagist/dt/corpsee/php-censor.svg?label=Downloads&style=flat-square)](https://packagist.org/packages/corpsee/php-censor)
[![License](https://img.shields.io/packagist/l/corpsee/php-censor.svg?label=License&style=flat-square)](https://packagist.org/packages/corpsee/php-censor)
[![SensioLabs Insight](https://img.shields.io/sensiolabs/i/26f28bee-a861-45b2-bc18-ed2ac7defd22.svg?label=Insight&style=flat-square)](https://insight.sensiolabs.com/projects/26f28bee-a861-45b2-bc18-ed2ac7defd22)
2016-07-19 13:05:02 +02:00
PHP Censor
2017-01-04 13:22:20 +01:00
==========
2017-01-25 17:11:08 +01:00
**PHP Censor** is a open source self-hosted continuous integration server for PHP projects (Fork of
[PHPCI](https://www.phptesting.org)).
2017-01-25 17:11:08 +01:00
[![Dashboard](docs/screenshots/dashboard.png)](docs/screenshots/dashboard.png)
2017-01-25 17:11:08 +01:00
More [screenshots](docs/en/screenshots.md).
System requirements
-------------------
* Unix-like OS (**Windows isn't supported**)
* PHP 5.6+ (with OpenSSL support and enabled functions: `exec()`, `shell_exec()` and `proc_open()`)
* Web-server (Nginx or Apache2)
* Database (MySQL/MariaDB or PostgreSQL)
* Beanstalkd queue (Optional)
2017-01-25 17:11:08 +01:00
Features
--------
2016-07-19 13:05:02 +02:00
2017-01-25 17:11:08 +01:00
* Clone project from Github, Bitbucket, Gitlab, Git, Mercurial, SVN or from local directory;
2017-01-25 17:11:08 +01:00
* Set up and tear down database tests for PostgreSQL, MySQL or SQLite;
2017-01-04 10:23:06 +01:00
2017-01-25 17:11:08 +01:00
* Install Composer dependencies;
2017-01-04 10:23:06 +01:00
2017-01-25 17:11:08 +01:00
* Run tests for PHPUnit, Atoum, Behat, Codeception and PHPSpec;
* Check code via Lint, PHPParallelLint, Pdepend, PHPCodeSniffer, PHPCpd, PHPCsFixer, PHPDocblockChecker, PHPLoc,
PHPMessDetect, PHPTalLint and TechnicalDept;
* Run through any combination of the other [supported plugins](docs/en/README.md), including Campfire, CleanBuild,
CopyBuild, Deployer, Env, Git, Grunt, Gulp, PackageBuild, Phar, Phing, Shell and Wipe;
* Send notifications on Email, XMPP, Slack, IRC, Flowdock and HipChat;
2017-01-04 14:36:54 +01:00
Configuring
-----------
2017-01-25 17:11:08 +01:00
There are several ways to set up the project:
* Add project without any project config (Runs "zero-config" plugins, including: Composer, TechnicalDept, PHPLoc,
PHPCpd, PHPCodeSniffer, PHPMessDetect, PHPDocblockChecker, PHPParallelLint, PHPUnit and Codeception);
* Similar to [Travis CI](https://travis-ci.org), to support PHP Censor in your project, you simply need to add a
`.php-censor.yml` (`phpci.yml`/`.phpci.yml` for backward compatibility with PHPCI) file to the root of your repository;
* Add project config in PHP Censor project page (And it will cancel file config from project repository);
The project config should look something like this:
2017-01-04 14:36:54 +01:00
```yml
setup:
composer:
action: "install"
test:
php_unit:
config: "phpunit.xml"
php_mess_detector:
allow_failures: true
php_code_sniffer:
standard: "PSR2"
php_cpd:
allow_failures: true
complete:
email:
default_mailto_address: admin@php-censor.local
```
2017-02-02 13:32:17 +01:00
More details about [configuring project](docs/en/configuring_project.md).
2017-01-04 14:36:54 +01:00
Installing
----------
2017-02-05 10:22:59 +01:00
1. Go to the directory in which you want to install PHP Censor, for example: `/var/www`:
2017-01-04 14:36:54 +01:00
2017-02-05 10:22:59 +01:00
```bash
cd /var/www
```
2017-01-04 14:36:54 +01:00
2017-02-05 10:22:59 +01:00
2. Create project by Composer:
2017-01-04 14:36:54 +01:00
2017-02-05 10:22:59 +01:00
```bash
composer create-project corpsee/php-censor php-censor.local --keep-vcs
```
2017-01-04 14:36:54 +01:00
2017-02-05 10:22:59 +01:00
Or download [latest archive](https://github.com/corpsee/php-censor/releases/latest) from Github, unzip it and run
`composer install`.
2017-01-04 14:36:54 +01:00
2017-02-05 10:22:59 +01:00
3. Create empty database for application (Mysql/MariaDB or Postgres);
2017-01-04 14:36:54 +01:00
2017-02-05 10:22:59 +01:00
4. Install Beanstalkd Queue (Optional, if you are going to use queue with Worker):
2017-01-04 14:36:54 +01:00
2017-02-05 10:22:59 +01:00
```bash
aptitude install beanstalkd # For deb-based
```
2017-01-04 14:36:54 +01:00
2017-02-05 10:22:59 +01:00
5. Install PHP Censor itself:
2017-01-04 14:36:54 +01:00
2017-02-05 10:22:59 +01:00
```bash
cd ./php-censor.local
# Interactive installation
./bin/console php-censor:install
# Non-interactive installation
./bin/console php-censor:install --url='http://php-censor.local' --db-type=pgsql --db-host=localhost --db-name=php-censor --db-user=php-censor --db-password=php-censor --db-port=null --admin-name=admin --admin-password=admin --admin-email='admin@php-censor.local' --queue-use=1 --queue-host=localhost --queue-name=php-censor
# Non-interactive installation with prepared config.yml file
./bin/console php-censor:install --config-from-file=yes --admin-name=admin --admin-password=admin --admin-email='admin@php-censor.local'
```
6. [Add a virtual host to your web server](docs/en/virtual_host.md), pointing to the `public` directory within your new
PHP Censor directory. You'll need to set up rewrite rules to point all non-existent requests to PHP Censor;
7. [Set up the PHP Censor Worker](docs/en/workers/worker.md) (Need configured Queue) or
[a cron-job](docs/en/workers/cron.md) to run PHP Censor builds;
2017-01-04 14:36:54 +01:00
Updating
--------
2017-02-05 10:22:59 +01:00
1. Go to your PHP Censor directory (to `/var/www/php-censor.local` for example):
```bash
cd /var/www/php-censor.local
```
2. Pull the latest code by Git:
2017-01-04 10:23:06 +01:00
2017-02-05 10:22:59 +01:00
```bash
git pull -r
```
3. Update the Composer dependencies: `composer install`
2017-01-04 10:23:06 +01:00
2017-02-05 10:22:59 +01:00
4. Update the PHP Censor database scheme:
2017-01-04 10:23:06 +01:00
2017-02-05 10:22:59 +01:00
```bash
./bin/console php-censor-migrations:migrate
```
Migrations
2017-01-04 13:22:20 +01:00
----------
Run to apply latest migrations:
```bash
cd /path/to/php-censor
./bin/console php-censor-migrations:migrate
```
Run to create new migration:
```bash
cd /path/to/php-censor
./bin/console php-censor-migrations:create NewMigrationName
```
2017-01-25 17:11:08 +01:00
Tests
-----
```bash
cd /path/to/php-censor
./vendor/bin/phpunit
```
For Phar plugin tests set 'phar.readonly' setting to Off (0) in `php.ini` config. Otherwise tests will be skipped.
For database B8Framework tests create empty 'b8_test' database on 'localhost' with user/password: `root/root`.
2017-01-25 17:11:08 +01:00
Otherwise database tests will be skipped.
Documentation
2017-01-04 13:22:20 +01:00
-------------
2017-01-04 14:36:54 +01:00
[Full PHP Censor documentation](docs/en/README.md).
2016-07-19 13:05:02 +02:00
License
2017-01-04 13:22:20 +01:00
-------
2017-01-05 11:36:13 +01:00
PHP Censor is open source software licensed under the [BSD-2-Clause license](LICENSE.md).