Skip to content

Commit

Permalink
Basic package stub.
Browse files Browse the repository at this point in the history
  • Loading branch information
zaak committed Jul 7, 2018
0 parents commit 267e593
Show file tree
Hide file tree
Showing 7 changed files with 668 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
vendor/

7 changes: 7 additions & 0 deletions _connector/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
This directory will contain the CKFinder 3 PHP connector code.

Please run the following command to fill it:

```bash
artisan ckfinder:download
```
24 changes: 24 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "ckfinder/ckfinder-laravel-package",
"description": "CKFinder 3 package for Laravel",
"type": "library",
"license": "MIT",
"require": {
"php": ">=5.6.0",
"illuminate/support": "5.x",
"illuminate/console": "^5.6"
},
"autoload": {
"psr-4": {
"CKSource\\CKFinderBridge\\": "src/",
"CKSource\\CKFinder\\": "_connector/"
}
},
"extra": {
"laravel": {
"providers": [
"CKSource\\CKFinderBridge\\CKFinderServiceProvider"
]
}
}
}
Loading

0 comments on commit 267e593

Please sign in to comment.