Skip to content

Commit

Permalink
v3.0.0-rc1
Browse files Browse the repository at this point in the history
So im done for now with the models based of v2.5.12
  • Loading branch information
REJack authored Feb 5, 2017
1 parent 2ae0b2e commit e880b49
Show file tree
Hide file tree
Showing 68 changed files with 3,813 additions and 4,401 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = tab
indent_size = 4

[*.{json,yml,xml}]
indent_style = space
indent_size = 2
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Created by .gitignore support plugin (hsz.mobi)
.idea/
node_modules
_book
39 changes: 39 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
language: php

notifications:
email: false

php:
- '5.5'
- '5.6'
- '7.0'

services:
- mysql

env:
global:
- CI_HOME=`pwd`
matrix:
- CODEIGNITER_VERSION="3.1.2"

before_install:
- mkdir ${CI_HOME}/testing_base && mv !(testing_base) ${CI_HOME}/testing_base
- composer require satooshi/php-coveralls:dev-master
- curl -o CI-${CODEIGNITER_VERSION}.zip https://codeload.github.com/bcit-ci/CodeIgniter/zip/${CODEIGNITER_VERSION}
- unzip -qq CI-${CODEIGNITER_VERSION}.zip
- rm -f CI-${CODEIGNITER_VERSION}.zip
- cd CodeIgniter-${CODEIGNITER_VERSION}
- composer require "kenjis/ci-phpunit-test:dev-master"
- php vendor/kenjis/ci-phpunit-test/install.php -s
- rm -f application/tests/controllers/Welcome_test.php
- cp -R ${CI_HOME}/testing_base/* ${CI_HOME}/CodeIgniter-${CODEIGNITER_VERSION}/application/
- ls -R ${CI_HOME}/CodeIgniter-${CODEIGNITER_VERSION}/application/tests/models
- cd ${CI_HOME}/CodeIgniter-${CODEIGNITER_VERSION}/application/tests

before_script:
- mysql -e 'create database aauth_test;'

script:
- phpunit --coverage-clover ${CI_HOME}/CodeIgniter-${CODEIGNITER_VERSION}/application/build/logs/clover.xml
- cd ${CI_HOME}/CodeIgniter-${CODEIGNITER_VERSION}/application/ && travis_retry bash <(curl -s https://codecov.io/bash)
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[![Stories in Ready](https://badge.waffle.io/emreakay/CodeIgniter-Aauth.png?label=ready&title=Ready)](https://waffle.io/emreakay/CodeIgniter-Aauth)
[![Travis-CI](https://img.shields.io/travis/REJack/CodeIgniter-Aauth/v3-dev.svg?style=flat-square)](https://travis-ci.org/REJack/CodeIgniter-Aauth)
[![Codecov](https://img.shields.io/codecov/c/github/REJack/CodeIgniter-Aauth/v3-dev.svg?style=flat-square)](https://codecov.io/gh/REJack/CodeIgniter-Aauth)
<p align="center">
<img src="https://cloud.githubusercontent.com/assets/2417212/8925689/add409ea-34be-11e5-8e50-845da8f5b1b0.png" height="320">
</p>

***
Aauth is a User Authorization Library for CodeIgniter 2.x and 3.x, which aims to make easy some essential jobs such as login, permissions and access operations. Despite its ease of use, it has also very advanced features like private messages, groupping, access management, and public access.
Aauth is a User Authorization Library for CodeIgniter 3.x, which aims to make easy some essential jobs such as login, permissions and access operations. Despite its ease of use, it has also very advanced features like private messages, groupping, access management, and public access.

**This is Quick Start page. You can also take a look at the [detailed Documentation Wiki](https://github.com/emreakay/CodeIgniter-Aauth/wiki/_pages) to learn about other great Features**

Expand Down
151 changes: 0 additions & 151 deletions application/config/aauth.php

This file was deleted.

Loading

0 comments on commit e880b49

Please sign in to comment.