Skip to content
This repository has been archived by the owner on Jul 15, 2020. It is now read-only.

Commit

Permalink
Updates before v0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
petk committed May 1, 2016
1 parent 57370fa commit a08bf0e
Show file tree
Hide file tree
Showing 6 changed files with 79 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/app/config/parameters.yml
/app/logs/*
!app/logs/.gitkeep
/app/phpunit.xml
/phpunit.xml
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,12 @@ php:
- '5.6'
- '7.0'
- hhvm
- nightly
- nightly

before_install:
- travis_retry composer self-update

install:
- travis_retry composer install --no-interaction --prefer-dist

script: phpunit
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

All notable changes to this project will be documented in this file. This project
[keeps a CHANGELOG](http://keepachangelog.com/) and adheres to
[Semantic Versioning](http://semver.org/).


## [UNREALEASED] 2016-

### Added

* ...


## [0.1.0] - 2016-05-02

### Added

* Initial repository structure
42 changes: 42 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Contribution Guidelines

You are most welcome to suggest improvements, or send a pull
requests. In case you find an issue, please report an
[issue](https://github.com/wwphp-fb/stats/issues)

* Fork this repository over GitHub
* Set up your local repository

```bash
$ git clone git@github.com:your_username/stats
$ cd stats
$ git remote add upstream git://github.com/wwphp-fb/stats
$ git config branch.master.remote upstream
```
* Make changes and send pull request

```bash
$ git add .
$ git commit -m "Fix bug"
$ git push origin
```


## Release Process

*(For repository maintainers)*

This repository follows [semantic versioning](http://semver.org). When source
code changes or new features are implemented, a new version (e.g. `1.x.y`) is
released by the following release process:


* **1. Update Changelog:**

Create an entry in [CHANGELOG.md](CHANGELOG.md) describing all the notable
changes from previous release.

* **2. Tag new release:**

Tag a new version on [GitHub](https://github.com/wwphp-fb/stats/releases) with
description of notable changes.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Stats generator for Facebook group

[![Latest Version](https://img.shields.io/github/release/wwphp-fb/stats.svg?style=plastic)](https://github.com/wwphp-fb/stats/releases)
[![Build Status](https://travis-ci.org/wwphp-fb/stats.svg?branch=master)](https://travis-ci.org/wwphp-fb/stats)
[![MIT License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=plastic)](LICENSE.md)

PHP application for generating stats for International PHP Facebook group.

## FAQ
Expand All @@ -25,7 +29,7 @@ not excluded for getting higher score than other members :)

## Installation

If you want to install this application locally, do the following:
To install this application locally, do the following:

1. Register Facebook Application

Expand Down Expand Up @@ -110,5 +114,5 @@ If you want to install this application locally, do the following:

This repository is released under the [MIT license](LICENSE).

Contributions and improvement suggestions are welcome by opening an
[issue](https://github.com/wwphp-fb/stats/issues) or sending pull request.
You are welcome to suggest improvements or open a ticket. More info in the
[CONTRIBUTING](CONTRIBUTING.md) file.
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<filter>
<whitelist>
<directory suffix=".php">src</directory>
<directory suffix="Test.php">src</directory>
</whitelist>
</filter>
</phpunit>

0 comments on commit a08bf0e

Please sign in to comment.