zitkino / zitkino
Brno's cinemas
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 2
Forks: 1
Open Issues: 3
Language:CSS
Type:project
Requires
- php: ^7.3
- ext-curl: *
- ext-dom: *
- ext-libxml: *
- contributte/console: ^0.7.1
- contributte/guzzlette: ^3.0
- doctrine/dbal: ^2.10
- doctrine/orm: ^2.7
- hermajan/dobine: dev-master
- hermajan/fazette: ^0.1.0
- hermajan/lib: dev-master
- johngrogg/ics-parser: ^2.1
- latte/latte: ^2.5
- nette/nette: ^3.0
- nettrine/cache: ^0.1.0
- nettrine/orm: ^0.4.1
- nextras/mail-panel: ^2.5
- tracy/tracy: ^2.7
- vlucas/phpdotenv: ^4.1
Requires (Dev)
- nette/tester: ^2.3
- phpstan/phpstan: ^0.12.3
- phpstan/phpstan-doctrine: ^0.12.6
- phpstan/phpstan-nette: ^0.12.0
This package is auto-updated.
Last update: 2024-12-26 23:17:38 UTC
README
Here is the code for the web https://www.zitkino.cz.
Installation
- download and install project via Composer:
composer create-project zitkino/zitkino:dev-master
- build Docker container with dependencies of project with command in terminal:
bash bin/docker.sh start
- setup your database connection in file
app/config/env/development.neon
- run Docker terminal:
bash bin/docker.sh ssh
- install dependencies:
make install
- create tables in your database in Docker terminal with
make database.update
- project will be available on
http://localhost
JavaScripts a Sass (CSS) styles
They are compiled via Gulp commands:
gulp
- for compiling and watching changedgulp setup
- for compiling only
Tests
To test the project, a script is prepared that can be run in Docker terminal via:
make tests
Nette Tester
Used for backend testing. Can be run in Docker terminal via:
composer run tester
PHPStan
It analyzes the code and looks for errors in it. It is configured in phpstan.neon
. Can be run in Docker terminal via:
composer run phpstan