Skip to content

Commit 4647196

Browse files
committed
Minor code quality improvements
1 parent 1cc19f7 commit 4647196

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ _tools/studio/css/packages/**
1515
_tools/studio/js/packages/**
1616
/cleanup.sh
1717
/images/test_uploads
18+
/library/Composer/
19+
/composer.lock

composer.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "mirekmarek/php-jet",
3+
"description": "PHP Jet is modern, powerful, real-life proven, really fast and secure, small and light-weight framework for PHP8 with great clean and flexible modular architecture containing awesone developing tools. No magic, just clean software engineering.",
4+
"type": "project",
5+
"keywords": ["php", "php8", "framework", "mvc", "modularity", "microservices", "orm", "redis", "mysql", "sqlite","localization","multiregional", "deb-tool", "profiler"],
6+
"homepage": "https://www.php-jet.net/",
7+
"license": "BSD-3-Clause",
8+
"authors": [
9+
{
10+
"name": "Miroslav Marek",
11+
"email": "mirek.marek@web-jet.cz",
12+
"role": "Developer"
13+
}
14+
],
15+
"support": {
16+
"email": "mirek.marek@web-jet.cz",
17+
"issues": "https://github.com/mirekmarek/php-jet/issues",
18+
"source": "https://github.com/mirekmarek/php-jet"
19+
},
20+
"require": {
21+
"php": ">=8.0",
22+
"ext-intl": "*",
23+
"ext-mbstring": "*",
24+
"ext-pdo": "*"
25+
},
26+
"autoload": {
27+
"psr-0": {
28+
}
29+
},
30+
"config": {
31+
"vendor-dir": "library/Composer/",
32+
"autoloader-suffix": "Composer"
33+
}
34+
}

0 commit comments

Comments
 (0)