hosiplan / project
The sandbox is a pre-packaged Nette Framework project, basic configured structure for your application.
Installs: 226
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 4
Forks: 0
Open Issues: 0
Language:JavaScript
Type:project
Requires
- php: >= 5.3.0
- janmarek/webloader: 2.1.*
- kdyby/annotations: @dev
- kdyby/autowired: @dev
- kdyby/console: @dev
- kdyby/doctrine: @dev
- kdyby/events: @dev
- nette/nette: dev-master#9bf0292c12 as 2.0.99
Requires (Dev)
- nette/tester: @dev
README
The basic skeleton of application.
What is Nette Framework?
Nette Framework 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.
Nette Framework speaks your language and helps you to easily build better websites.
Installing
The best way to install Nette Framework is to download latest package from http://nette.org/download or create new project using Composer:
-
Install Composer: (see http://getcomposer.org/download)
curl -s http://getcomposer.org/installer | php
-
Create new project via Composer:
php composer.phar create-project nette/sandbox myApplication dev-master cd myApplication
Make directories temp
and log
writable. Navigate your browser
to the www
directory and you will see a welcome page. PHP 5.4 allows
you run php -S localhost:8888 -t www
to start the webserver and
then visit http://localhost:8888
in your browser.
It is CRITICAL that file app/config/config.neon
& whole app
, log
and temp
directory are NOT accessible directly via a web browser! If you
don't protect this directory from direct web access, anybody will be able to see
your sensitive data. See security warning.