Skip to content
This repository was archived by the owner on Jan 5, 2019. It is now read-only.

Commit 6b24fcb

Browse files
author
Mario Basic
committed
Updated readme and added travis.
1 parent d8d510e commit 6b24fcb

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: php
2+
php:
3+
- '5.5'
4+
- '5.6'
5+
- '7.0'
6+
- hhvm
7+
services:
8+
- mysql
9+
install:
10+
- composer install
11+
before_script:
12+
- mysql -e 'create database kyle_test;'
13+
- php artisan migrate
14+
script:
15+
- vendor/bin/phpunit
16+
env:
17+
- DB_DATABASE=kyle_test DB_USERNAME=root APP_KEY="SdklvfdkJY46KvNmnihYLfspA4xOLeub"

readme.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,20 @@
44
[![Total Downloads](https://poser.pugx.org/laravelista/kyle/downloads?format=flat-square)](https://packagist.org/packages/laravelista/kyle)
55
[![License](https://poser.pugx.org/laravelista/kyle/license?format=flat-square)](https://packagist.org/packages/laravelista/kyle)
66

7-
Kyle is a web application for web developers and small companies to efficiently track and stay on top of future expenses related to web development. We believe that having a calendar with reoccurring meetings or relying on email notifications from service providers is not a trustworthy source of information to bill clients for the services they use.
7+
Kyle is a web application for web developers and small companies to efficiently track and stay on top of yearly expenses related to services. We believe that having a calendar with reoccurring meetings or relying on email notifications from service providers is not a trustworthy source of information to bill clients for the services they use.
88

99
Kyle attempts to provide you with a clear and simple way to see which client uses which services and when those service need to be billed. The idea behind Kyle is very simple "Never forget to bill a client for the services that he uses". You can keep track of things like: is the offer sent, did you receive payment and did you send the receipt.
1010

11+
## Features
12+
13+
- Overview of services for current and upcoming month
14+
- Service breakdown by month
15+
- Keep track of services that a client uses
16+
- Group services by custom defined categories
17+
- Yearly report and statistics
18+
- Track is the offer sent, payment received and receipt sent
19+
- Email notifications (Planned)
20+
1121
## Installation
1222

1323
Install by issuing the Composer `create-project` command in your terminal:

tests/ExampleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ class ExampleTest extends TestCase
1414
public function testBasicExample()
1515
{
1616
$this->visit('/')
17-
->see('Laravel 5');
17+
->see('Kyle');
1818
}
1919
}

0 commit comments

Comments
 (0)