Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
64 commits
Select commit Hold shift + click to select a range
5cd5b0f
Add a CLI script to init DB
Dec 4, 2014
ebae7bd
Replace the old file by the CLI script
Dec 4, 2014
c17420e
add vendor to gitignore
Jan 8, 2015
4958d19
remove unnecessary repositories in composer.json
Jan 8, 2015
3d3a27d
fix instanceof usage
Jan 8, 2015
742fc9e
Move files in new directories
Kern046 Jan 9, 2015
d58501a
Add namespaces to the class files
Kern046 Jan 9, 2015
8b92561
Update autoload parameters and gitignore
Kern046 Jan 9, 2015
b18d56f
Fix conflicts with master
Jan 9, 2015
c706701
Merge pull request #1 from Kilix/feature/architecture
csanquer Jan 9, 2015
0739b5a
Remove old config and set a config JSON file instead
Jan 12, 2015
b4695e6
Move tests files
Jan 12, 2015
3b26014
Add possibility to set database configuration with an array
Jan 12, 2015
9948ada
Fix call_user_func() on Jf and remove useless statement
Jan 12, 2015
d0f2050
Delete useless setup scripts
Jan 12, 2015
7e28e6c
Merge pull request #2 from Kilix/feature/database-config
Kern046 Jan 12, 2015
21a071e
Change repository name in composer.json
Jan 12, 2015
01c588a
Add Installers to replace the old setup.php file
Jan 12, 2015
dd5a7ea
Hotfix: Inverse conditions to avoid error on is_file() function
Jan 13, 2015
9783797
Remove old tests
Jan 21, 2015
ed97923
Set Table prefix as property to make the test work
Jan 21, 2015
2ab407f
Fix sqlPdo method
Jan 21, 2015
b4d33b3
Fix some installer functions
Jan 21, 2015
b3141cc
Fix msqli Installer
Jan 21, 2015
0a6d72f
Fix installers and Jf class
Jan 21, 2015
97d5b43
Add tests for Jf
Jan 21, 2015
8a5c304
Final fix of the installers
Jan 21, 2015
ad7437d
Change table prefix in config
Jan 21, 2015
b789ee7
Achieve tests on database
Jan 21, 2015
75d3b79
Fix the managers
Jan 21, 2015
c8f050f
Adapt UserManager name to other managers name
Jan 22, 2015
ff6a538
Final fixes to the managers
Jan 22, 2015
1cdc5a7
Add Tests for the library
Jan 22, 2015
3871167
Delete old database configuration
Jan 22, 2015
57b4bfa
Remove old tests files and rename phpunit configuration file
Jan 22, 2015
be00699
improve phpunit config
Jan 22, 2015
088e28e
Merge pull request #3 from Kilix/refactoring
csanquer Jan 22, 2015
956dcf5
reorganize sources
Jan 22, 2015
fc7a3c1
restore composer package name
Jan 22, 2015
c458a75
fix composer package name
Jan 22, 2015
7346a93
fix first loading of Jf class
Jan 22, 2015
34d8553
Remove managers from JF class
Feb 2, 2015
9ffc06a
Fix tests and some issues in the managers
Feb 3, 2015
dd0354b
Add dependency to an outer connection to database and add Singleton p…
Feb 10, 2015
e2de7e2
Remove installers
Feb 10, 2015
7a31bd4
Remove the installers tests and rename the databaseManager test
Feb 10, 2015
793a148
Make few fixes according to the tests
Feb 12, 2015
2d7f86c
Update tests
Feb 12, 2015
ec2f60e
Fix tests on Rbac main class, by testing it itself instead of RbacMan…
Feb 12, 2015
5d24ffa
Remove useless method tablePrefix()
Feb 12, 2015
1c3c1b4
Fix the testing script
Feb 12, 2015
67b2944
Merge pull request #3 from Kern046/style-issues
Kern046 Feb 12, 2015
051ef6a
Delete old JSON file database_config
Feb 20, 2015
0fcf1b9
Factore getId method in the parent manager
Feb 20, 2015
1c1e730
Do some improvments and factoring within the managers
Feb 26, 2015
d16cdda
Merge pull request #4 from Kern046/style-issues
Kern046 Feb 26, 2015
b6a29d3
Move tests in the src folder
Feb 26, 2015
2de1d38
WIP
Feb 27, 2015
17a728d
Remove JModel and put its code in DatabaseManager
Mar 18, 2015
507ad52
Transfer the documentation annotations from the BaseRbacManager to it…
Mar 18, 2015
5b94d10
Remove duplicate code
Mar 18, 2015
2eafa03
Fix methods and tests for DatabaseManager
Mar 27, 2015
e2ce24f
Delete inexact uses of variadic functions and adapt both managers and…
Mar 27, 2015
aef2e2b
Merge pull request #5 from Kern046/style-issues
Kern046 Mar 27, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
.settings
.buildpath
.project
*bak*
*draft*
*phprbac.sqlite3*
*Doxygen*
*phpdoc*
index.php
.settings
.buildpath
.project
*bak*
*draft*
*phprbac.sqlite3*
*Doxygen*
*phpdoc*
/nbproject/
/vendor/
/build
phpunit.xml
composer.lock
22 changes: 0 additions & 22 deletions PhpRbac/autoload.php

This file was deleted.

13 changes: 0 additions & 13 deletions PhpRbac/database/database.config

This file was deleted.

322 changes: 0 additions & 322 deletions PhpRbac/install.php

This file was deleted.

Loading