webnazakazku / nette-doctrine-sandbox
The sandbox is a pre-packaged Nette Framework project with Doctrinee extension, basic configured structure for your application.
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:HTML
Type:project
Requires
- php: >=5.6.0
- kdyby/doctrine: @dev
- kdyby/events: @dev
- latte/latte: ^2.4
- nette/application: ^2.4.4
- nette/bootstrap: ^2.4.3
- nette/caching: ^2.5
- nette/di: ^2.4
- nette/finder: ^2.4
- nette/forms: ^2.4
- nette/http: ^2.4
- nette/mail: ^2.4
- nette/robot-loader: ^2.4 || ^3.0
- nette/safe-stream: ^2.3
- nette/security: ^2.4
- nette/utils: ^2.4
- nextras/migrations: @dev
- tracy/tracy: ^2.4
Requires (Dev)
- nette/tester: ^2.0
This package is auto-updated.
Last update: 2024-11-04 09:29:47 UTC
README
This is a simple pre-packaged and pre-configured application using the Nette that you can use as the starting point for your new applications.
Nette is a popular tool for PHP web development. It is designed to be the most usable and friendliest as possible. It focuses on security and performance and is definitely one of the safest PHP frameworks.
Installation
The best way to install Web Project is using Composer. If you don't have Composer yet, download it following the instructions. Then use command:
composer create-project webnazakazku/nette-doctrine-sandbox:@dev path/to/install
cd path/to/install
Make directories temp/
and log/
writable.
Web Server Setup
The simplest way to get started is to start the built-in PHP server in the root directory of your project:
php -S localhost:8000 -t www
Then visit http://localhost:8000
in your browser to see the welcome page.
For Apache or Nginx, setup a virtual host to point to the www/
directory of the project and you
should be ready to go.
It is CRITICAL that whole app/
, log/
and temp/
directories are not accessible directly
via a web browser. See security warning.
Requirements
- Sandbox for Nette 2.4 requires PHP 5.6
To check whether server configuration meets the minimum requirements for
Nette Framework browse to the directory /checker
in your project root (i.e. http://localhost:8000/checker
).
Console
This sandbox includes Kdyby Console extensionn(https://github.com/Kdyby/Console)
Notice: Composer PHP version
This project forces PHP 5.6 (eventually 7.1) as your PHP version for Composer packages. If you have newer
version on production server you should change it in composer.json
:
"config": { "platform": { "php": "7.2" } }