Skip to content
Open
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
File renamed without changes.
4 changes: 2 additions & 2 deletions .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.1', '8.2']
php: ['8.1', '8.2', '8.3', '8.4']

name: Linting - PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v5
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
Expand Down
17 changes: 7 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,19 @@
.idea
/.env

###> symfony/framework-bundle ###
/.env
/.env.local
/.env.local.php
/.env.*.local
/public/bundles/
/var/
vendor/
/vendor/
###< symfony/framework-bundle ###

###> friendsofphp/php-cs-fixer ###
/.php_cs
/.php-cs-fixer.cache
###< friendsofphp/php-cs-fixer ###

###> symfony/webpack-encore-pack ###
/node_modules/
/public/build/
npm-debug.log
yarn-error.log
###< symfony/webpack-encore-pack ###

###> symfony/webpack-encore-bundle ###
/node_modules/
/public/build/
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ Simple as that:
composer create-project kevinpapst/tabler-bundle-demo
```

or

```bash
git clone git@github.com:kevinpapst/TablerBundle-Demo.git tabler-bundle-demo
composer install
```

# Usage
### Symfony binary
Use the [Symfony binary](https://symfony.com/download) to quickly start up a development server:
Expand Down
41 changes: 20 additions & 21 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,30 @@
"description": "Demo application to showcase the Tabler Bundle",
"require": {
"php": "8.1.*||8.2.*",
"composer/package-versions-deprecated": "^1.11.99",
"erusev/parsedown": "^1.7",
"kevinpapst/tabler-bundle": "dev-main",
"kevinpapst/tabler-bundle": "dev-tabler14",
"knplabs/knp-menu-bundle": "^3.0",
"symfony/asset": "^6.0",
"symfony/console": "^6.0",
"symfony/dotenv": "^6.0",
"symfony/flex": "^1.0",
"symfony/form": "^6.0",
"symfony/framework-bundle": "^6.0",
"symfony/intl": "^6.0",
"symfony/runtime": "5.*",
"symfony/security-bundle": "^6.0",
"symfony/stopwatch": "^6.0",
"symfony/translation": "^6.0",
"symfony/twig-bundle": "^6.0",
"symfony/validator": "^6.0",
"symfony/webpack-encore-bundle": "^1.9",
"symfony/yaml": "^6.0"
"symfony/asset": "^6.4",
"symfony/console": "^6.4",
"symfony/dotenv": "^6.4",
"symfony/flex": "^2.0",
"symfony/form": "^6.4",
"symfony/framework-bundle": "^6.4",
"symfony/intl": "^6.4",
"symfony/runtime": "^6.4",
"symfony/security-bundle": "^6.4",
"symfony/stopwatch": "^6.4",
"symfony/translation": "^6.4",
"symfony/twig-bundle": "^6.4",
"symfony/validator": "^6.4",
"symfony/webpack-encore-bundle": "^2.0",
"symfony/yaml": "^6.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.2",
"symfony/debug-bundle": "^6.0",
"symfony/web-profiler-bundle": "^6.0"
"phpstan/phpstan": "^2.0",
"symfony/debug-bundle": "^6.4",
"symfony/web-profiler-bundle": "^6.4"
},
"config": {
"platform": {
Expand Down Expand Up @@ -100,7 +99,7 @@
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.3.*"
"require": "6.4.*"
}
}
}
Loading