Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ package-lock.json
.project
.buildpath
.settings/

# Ignore the file .DS_Store in all directories
**/.DS_Store
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The purpose of dotkernel.org

**Dotkernel.org** is designed to be a presentation site for **Dotkernel API**, a platform based on Enrico Zimuel's Zend Expressive API - Skeleton example.
DotKernel API runs on Laminas and Mezzio components and implements standards like PSR-3, PSR-4, PSR-7, PSR-11 and PSR-15.
Dotkernel API runs on Laminas and Mezzio components and implements standards like PSR-3, PSR-4, PSR-7, PSR-11 and PSR-15.

The site **highlights**:

Expand Down
2 changes: 1 addition & 1 deletion config/autoload/app.global.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

$app = [
'name' => 'Dotkernel Light V1',
'name' => 'Dotkernel Light | PSR-15 compliant application',
];

return [
Expand Down
28 changes: 16 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"version": "1.0.0",
"description": "Minimal project to generate a simple website.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=development node_modules/.bin/webpack --progress",
"watch": "cross-env NODE_ENV=development webpack --watch --mode development --progress",
"prod": "cross-env NODE_ENV=production node_modules/.bin/webpack --mode=production --progress"
"watch": "vite build --watch",
"build": "vite build"
},
"repository": {
"type": "git",
Expand All @@ -23,41 +23,45 @@
},
"homepage": "https://github.com/dotkernel/light#readme",
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"autoprefixer": "^10.4.20",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"bootstrap": "^5.3.3",
"bootstrap-fileinput": "^5.5.4",
"bootstrap-sass": "^3.4.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"imports-loader": "^5.0.0",
"jquery": "^3.7.1",
"jquery-mousewheel": "^3.1.13",
"mini-css-extract-plugin": "^2.9.1",
"postcss-loader": "^8.1.1",
"pre-commit": "^1.2.2",
"resolve-url-loader": "^5.0.0",
"sass": "^1.86.3",
"sass-loader": "^16.0.1",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"tippy.js": "^6.3.7",
"toastr": "^2.1.4",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
"vite": "^6.3.1",
"vite-plugin-static-copy": "^2.3.1"
},
"dependencies": {
"@babel/core": "^7.26.9",
"@popperjs/core": "^2.11.8",
"bootstrap-slider": "^11.0.2",
"lightningcss": "^1.29.3",
"npm": "^10.8.3",
"pdfjs-dist": "^4.6.82",
"pdfobject": "^2.3.0",
"sass": "^1.77.8"
"npm-check": "^6.0.1",
"popper.js": "^1.16.1",
"vite-jsconfig-paths": "^2.0.1",
"vite-plugin-bundle-css": "^0.1.1",
"vite-plugin-commonjs": "^0.10.4",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-minify": "^2.1.0"
}
}
2 changes: 1 addition & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
includes:
- vendor/phpstan/phpstan-phpunit/extension.neon
parameters:
level: 5
level: 8
paths:
- bin
- config
Expand Down
Loading