Skip to content

Commit

Permalink
First commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
YaroslavKozhemiaka committed Oct 20, 2019
1 parent 972eb70 commit bc1df34
Show file tree
Hide file tree
Showing 23 changed files with 3,350 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#
# Exclude files from exporting
#
/tests export-ignore
/phpunit.xml export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/vendor
.idea
.phpunit.result.cache
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Simple permission
Simple permission handling for PHP.
36 changes: 36 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "ykozhemiaka/simple-permission",
"description": "Simple permission handling for PHP.",
"type": "composer-plugin",
"license": "MIT",
"keywords": [
"permission",
"simple permission",
"acl",
"security"
],
"authors": [
{
"name": "Yaroslav Kozhemiaka",
"email": "jaroslav.kozhemiaka@gmail.com"
}
],
"require": {
"illuminate/database": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "8",
"symfony/var-dumper": "^4.3"
},
"autoload": {
"psr-4": {
"SimplePermission\\": "src",
"SimplePermission\\Database\\": "database"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}
Loading

0 comments on commit bc1df34

Please sign in to comment.