Skip to content

Commit b886bc2

Browse files
committed
Initial commit
0 parents  commit b886bc2

12 files changed

+1714
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = tab
7+
trim_trailing_whitespace = true
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
[*.md]
12+
indent_style = space
13+
indent_size = 4

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# IntelliJ
2+
.idea/
3+
4+
# Composer
5+
vendor/
6+
composer.phar

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) delight.im (https://www.delight.im/)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# PHP-Foundation-Core
2+
3+
Core of [PHP-Foundation](https://github.com/delight-im/PHP-Foundation)
4+
5+
## Requirements
6+
7+
* PHP 5.6.0+
8+
* `mbstring` extension
9+
10+
## Installation (via [Composer](https://getcomposer.org/))
11+
12+
`$ composer require delight-im/foundation-core`
13+
14+
Include the Composer autoloader:
15+
16+
`require __DIR__.'/vendor/autoload.php';`
17+
18+
## Contributing
19+
20+
All contributions are welcome! If you wish to contribute, please create an issue first so that your feature, problem or question can be discussed.
21+
22+
## License
23+
24+
This project is licensed under the terms of the [MIT License](https://opensource.org/licenses/MIT).

composer.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "delight-im/foundation-core",
3+
"description": "Core of 'PHP-Foundation'",
4+
"require": {
5+
"php": ">=5.6.0",
6+
"ext-mbstring": "*",
7+
"delight-im/auth": "^4.0",
8+
"delight-im/cookie": "^2.0",
9+
"delight-im/db": "^1.0",
10+
"delight-im/ids": "^1.0",
11+
"delight-im/router": "^3.0",
12+
"delight-im/str": "^2.4",
13+
"filp/whoops": "^2.1",
14+
"swiftmailer/swiftmailer": "^5.4",
15+
"twig/twig": "^1.26",
16+
"vlucas/phpdotenv": "^2.4"
17+
},
18+
"type": "library",
19+
"keywords": [ "framework", "bootstrap" ],
20+
"homepage": "https://github.com/delight-im/PHP-Foundation-Core",
21+
"license": "MIT",
22+
"autoload": {
23+
"psr-4": {
24+
"Delight\\Foundation\\": "src/"
25+
}
26+
}
27+
}

0 commit comments

Comments
 (0)