forked from mirzaev/minimal
		
	
			
				
					
						
					
					c841250933cdab978c7fa9031e099aaff0fab3e0
				
			
			
		
	MINIMAL
The best code-to-utility Framework
Nearest plans (2025)
- Middlewares technology
 - Route sorting 
router::sort() - Processing routes from within routes (request emulation)
 
Installation
Execute: composer require mirzaev/minimal
Usage
index.php
// Initializing the core
$core = new core(namespace: __NAMESPACE__);
// Initializing routes
$core->router
	->write('/', new route('index', 'index'), 'GET')
	->write('/search', new route('search', 'search'), 'POST')
	->write('/product/create', new route('product', 'create'), 'PUT')
	->write('/product/$id', new route('product', 'read'), 'GET')
	->write('/product/$id', new route('product', 'read'), 'POST')
	->write('/$categories', new route('categories', 'read'), 'GET') // Collector (since 0.3.0)
;
// Handling the request
$core->start();
Projects based on MINIMAL
ebala
Repository: https://git.svoboda.works/mirzaev/ebala
Github mirror: https://github.com/mature-woman/ebala
I earned more than a million rubles from this project
Repositories may be closed at the request of the customer
Arming
Repository: https://git.svoboda.works/weby/arming
Guthub mirror: https://github.com/WEBY-GROUP/arming
Telegram chat-robot marketplace
not.chat
Repository: https://git.svoboda.works/mirzaev/notchat
Github mirror: https://github.com/mature-woman/notchat
P2P chat project with blockchains and smart stuff
					Languages
				
				
								
								
									PHP
								
								100%