composer new project, where is BasePresenter and SignPresenter?

thcom
Backer | 94
+
0
-

hi

u create new project with
composer create-project nette/web-project myProject

but there is missing BasePresenter and SignPresenter ?

its deprecated ?

thank you !

Ondřej Kubíček
Member | 494
+
0
-

it is not default configuration for web-project because they are not necessary files for running app. You have to create it yourself manually if you need them.

thcom
Backer | 94
+
0
-

great, thank you

exist any option like
composer create-project nette/web-project
to create project with base and sign presenter ?

Šaman
Member | 2634
+
0
-

nette/web-project is default minimum for start Nette application. Its clean, without user managemet etc.
nette/sandbox is prepared sandbox with some typical non-core classes and scripts. For first application, I recommend sandbox.

thcom
Backer | 94
+
0
-

sandbox perfect !!

thank you !!!