All Projects → nette → Sandbox

nette / Sandbox

Nette Framework sandbox project.

Projects that are alternatives of or similar to Sandbox

dockerfiles
🐳 Dockerfiles for Nette Framework. Nette in Docker. (@nette)
Stars: ✭ 15 (-89.51%)
Mutual labels:  nette, sandbox, nette-framework
Guzzlette
🌀 Guzzle integration into Nette Framework (@nette)
Stars: ✭ 19 (-86.71%)
Mutual labels:  nette, nette-framework
Nette
👪 METAPACKAGE for Nette Framework components
Stars: ✭ 1,356 (+848.25%)
Mutual labels:  nette, nette-framework
Component Model
⚛ Component model foundation for Nette.
Stars: ✭ 117 (-18.18%)
Mutual labels:  nette, nette-framework
Docs
📖 The Nette documentation
Stars: ✭ 99 (-30.77%)
Mutual labels:  nette, nette-framework
Finder
🔍 Finder: find files and directories with an intuitive API.
Stars: ✭ 765 (+434.97%)
Mutual labels:  nette, nette-framework
Utils
🛠 Lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.
Stars: ✭ 1,158 (+709.79%)
Mutual labels:  nette, nette-framework
Latte
☕ Latte: the intuitive and fast template engine for those who want the most secure PHP sites.
Stars: ✭ 616 (+330.77%)
Mutual labels:  nette, nette-framework
Middlewares
💥 Middlewares / Relay / PSR-7 support to Nette Framework (@nette)
Stars: ✭ 13 (-90.91%)
Mutual labels:  nette, nette-framework
Cookbook
🎶 Cookbook for Nette Framework (@nette) & Contributte (@contributte). Read it while its HOT!
Stars: ✭ 30 (-79.02%)
Mutual labels:  nette, nette-framework
Tracy
😎 Tracy: the addictive tool to ease debugging PHP code for cool developers. Friendly design, logging, profiler, advanced features like debugging AJAX calls or CLI support. You will love it.
Stars: ✭ 1,345 (+840.56%)
Mutual labels:  nette, nette-framework
Robot Loader
🍀 RobotLoader: high performance and comfortable autoloader that will search and autoload classes within your application.
Stars: ✭ 690 (+382.52%)
Mutual labels:  nette, nette-framework
Neon
🍸 Encodes and decodes NEON file format.
Stars: ✭ 674 (+371.33%)
Mutual labels:  nette, nette-framework
Tokenizer
Source code tokenizer
Stars: ✭ 119 (-16.78%)
Mutual labels:  nette, nette-framework
Di
💎 Flexible, compiled and full-featured Dependency Injection Container with perfectly usable autowiring and support for all new PHP 7 features.
Stars: ✭ 645 (+351.05%)
Mutual labels:  nette, nette-framework
Mobile Detect
Extension for detecting mobile devices, managing mobile view types, redirect to mobile version for Nette Framework (2.4+)
Stars: ✭ 19 (-86.71%)
Mutual labels:  nette, nette-framework
Naja
Modern AJAX library for Nette Framework
Stars: ✭ 86 (-39.86%)
Mutual labels:  nette, nette-framework
Schema
📐 Validating data structures against a given Schema.
Stars: ✭ 359 (+151.05%)
Mutual labels:  nette, nette-framework
Bootstrap
🅱 The simple way to configure and bootstrap your Nette application.
Stars: ✭ 524 (+266.43%)
Mutual labels:  nette, nette-framework
Flash Messages
Flash messages handler for Nette Framework (2.4+)
Stars: ✭ 8 (-94.41%)
Mutual labels:  nette, nette-framework

Nette Sandbox

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.

If you like Nette, please make a donation now. Thank you!

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 nette/sandbox 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/, config, log/ and temp/ directories are not accessible directly via a web browser. See security warning.

Requirements

  • Sandbox for Nette 3.1 requires PHP 7.4

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).

Adminer

Adminer is full-featured database management tool written in PHP and it is part of this Sandbox. To use it, browse to the subdirectory /adminer in your project root (i.e. http://localhost:8000/adminer).

PHPStan

PHPStan is static analysis tool to discover bugs in your code without running it. Run PHPStan like this:

composer phpstan
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].