Skip to content

Commit e880b49

Browse files
authored
v3.0.0-rc1
So im done for now with the models based of v2.5.12
1 parent 2ae0b2e commit e880b49

68 files changed

Lines changed: 3813 additions & 4401 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
charset = utf-8
6+
trim_trailing_whitespace = true
7+
insert_final_newline = true
8+
indent_style = tab
9+
indent_size = 4
10+
11+
[*.{json,yml,xml}]
12+
indent_style = space
13+
indent_size = 2

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Created by .gitignore support plugin (hsz.mobi)
2-
.idea/
1+
node_modules
2+
_book

.travis.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
language: php
2+
3+
notifications:
4+
email: false
5+
6+
php:
7+
- '5.5'
8+
- '5.6'
9+
- '7.0'
10+
11+
services:
12+
- mysql
13+
14+
env:
15+
global:
16+
- CI_HOME=`pwd`
17+
matrix:
18+
- CODEIGNITER_VERSION="3.1.2"
19+
20+
before_install:
21+
- mkdir ${CI_HOME}/testing_base && mv !(testing_base) ${CI_HOME}/testing_base
22+
- composer require satooshi/php-coveralls:dev-master
23+
- curl -o CI-${CODEIGNITER_VERSION}.zip https://codeload.github.com/bcit-ci/CodeIgniter/zip/${CODEIGNITER_VERSION}
24+
- unzip -qq CI-${CODEIGNITER_VERSION}.zip
25+
- rm -f CI-${CODEIGNITER_VERSION}.zip
26+
- cd CodeIgniter-${CODEIGNITER_VERSION}
27+
- composer require "kenjis/ci-phpunit-test:dev-master"
28+
- php vendor/kenjis/ci-phpunit-test/install.php -s
29+
- rm -f application/tests/controllers/Welcome_test.php
30+
- cp -R ${CI_HOME}/testing_base/* ${CI_HOME}/CodeIgniter-${CODEIGNITER_VERSION}/application/
31+
- ls -R ${CI_HOME}/CodeIgniter-${CODEIGNITER_VERSION}/application/tests/models
32+
- cd ${CI_HOME}/CodeIgniter-${CODEIGNITER_VERSION}/application/tests
33+
34+
before_script:
35+
- mysql -e 'create database aauth_test;'
36+
37+
script:
38+
- phpunit --coverage-clover ${CI_HOME}/CodeIgniter-${CODEIGNITER_VERSION}/application/build/logs/clover.xml
39+
- cd ${CI_HOME}/CodeIgniter-${CODEIGNITER_VERSION}/application/ && travis_retry bash <(curl -s https://codecov.io/bash)

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
[![Stories in Ready](https://badge.waffle.io/emreakay/CodeIgniter-Aauth.png?label=ready&title=Ready)](https://waffle.io/emreakay/CodeIgniter-Aauth)
1+
[![Travis-CI](https://img.shields.io/travis/REJack/CodeIgniter-Aauth/v3-dev.svg?style=flat-square)](https://travis-ci.org/REJack/CodeIgniter-Aauth)
2+
[![Codecov](https://img.shields.io/codecov/c/github/REJack/CodeIgniter-Aauth/v3-dev.svg?style=flat-square)](https://codecov.io/gh/REJack/CodeIgniter-Aauth)
23
<p align="center">
34
<img src="https://cloud.githubusercontent.com/assets/2417212/8925689/add409ea-34be-11e5-8e50-845da8f5b1b0.png" height="320">
45
</p>
56

67
***
7-
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.
8+
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.
89

910
**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**
1011

application/config/aauth.php

Lines changed: 0 additions & 151 deletions
This file was deleted.

0 commit comments

Comments
 (0)