limb-php / limb-framework
Limb5 PHP framework
Installs: 552
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Type:project
Requires
- php: 8.0.* || 8.1.*
- ext-json: *
- phpmailer/phpmailer: ^6.6
- predis/predis: ^2.2
- psr/http-message: ^1.1
- psr/log: ^2.0
- psr/simple-cache: ^2.0
Requires (Dev)
- phpunit/phpunit: ^9 || ^10
- robmorgan/phinx: ^0.13.4
- twig/twig: 3.*
- urands/firephp: ^1.0
Replaces
- limb/acl: v5.0.0
- limb/active_record: v5.0.0
- limb/cache: v5.0.0
- limb/cache2: v5.0.0
- limb/calendar: v5.0.0
- limb/cli: v5.0.0
- limb/cms: v5.0.0
- limb/config: v5.0.0
- limb/core: v5.0.0
- limb/cron: v5.0.0
- limb/datetime: v5.0.0
- limb/dbal: v5.0.0
- limb/filter_chain: v5.0.0
- limb/fs: v5.0.0
- limb/i18n: v5.0.0
- limb/imagekit: v5.0.0
- limb/log: v5.0.0
- limb/macro: v5.0.0
- limb/mail: v5.0.0
- limb/net: v5.0.0
- limb/optimization: v5.0.0
- limb/search: v5.0.0
- limb/session: v5.0.0
- limb/toolkit: v5.0.0
- limb/tree: v5.0.0
- limb/twig: v5.0.0
- limb/validation: v5.0.0
- limb/view: v5.0.0
- limb/web_agent: v5.0.0
- limb/web_app: v5.0.0
- limb/web_cache: v5.0.0
- limb/web_spider: v5.0.0
- limb/wysiwyg: v5.0.0
- dev-master
- 5.x-dev
- v5.0.0
- 4.x-dev
- v4.6.4
- v4.6.3
- v4.6.2
- v4.6.1
- v4.6.0
- v4.5.5
- v4.5.4
- v4.5.3
- v4.5.2
- v4.5.1
- v4.5.0
- v4.4.31
- V4.4.30
- v4.4.29
- v4.4.28
- v4.4.27
- v4.4.26
- v4.4.25
- v4.4.24
- v4.4.23
- v4.4.22
- v4.4.21
- v4.4.20
- v4.4.19
- v4.4.18
- v4.4.17
- v4.4.16
- v4.4.15
- v4.4.14
- v4.4.13
- v4.4.12
- v4.4.11
- v4.4.10
- v4.4.9
- v4.4.8
- v4.4.7
- v4.4.6
- v4.4.5
- v4.4.4
- v4.4.3
- v4.4.2
- v4.4.1
- v4.4.0
- v4.3.10
- v4.3.9
- v4.3.8
- v4.3.7
- v4.3.6
- v4.3.5
- v4.3.4
- v4.3.3
- v4.3.2
- v4.3.1
- v4.3.0
- v4.2.61
- v4.2.60
- v4.2.59
- v4.2.58
- v4.2.57
- v4.2.56
- v4.2.55
- v4.2.54
- v4.2.53
- v4.2.52
- v4.2.51
- v4.2.50
- v4.2.49
- v4.2.48
- v4.2.47
- v4.2.46
- v4.2.45
- v4.2.44
- v4.2.43
- v4.2.42
- v4.2.41
- v4.2.40
- v4.2.39
- v4.2.38
- v4.2.37
- v4.2.36
- v4.2.35
- v4.2.34
- v4.2.33
- v4.2.32
- v4.2.31
- v4.2.30
- v4.2.29
- v4.2.28
- v4.2.27
- v4.2.26
- v4.2.25
- v4.2.24
- v4.2.23
- v4.2.22
- v4.2.21
- v4.2.20
- v4.2.19
- v4.2.18
- v4.2.17
- v4.2.16
- v4.2.15
- v4.2.14
- v4.2.13
- v4.2.12
- v4.2.11
- v4.2.10
- v4.2.9
- v4.2.8
- v4.2.7
- v4.2.6
- v4.2.5
- v4.2.4
- v4.2.3
- v4.2.1
- v4.2.0
- v4.1.1
- v4.1.0
- v4.0.2
This package is auto-updated.
Last update: 2025-03-26 20:43:15 UTC
README
################################################################################ Limb4 Web Application Framework ################################################################################ Limb is a general PHP Web Application Framework Here is the list of the most notable packages at the moment: * core: the base system package which provides lazy loading of PHP code, iterators support, generic object containers, decorators generators, transparent object proxies, etc * toolkit: dependency injection tools * filter_chain: InterceptingFilter design pattern implementation * web_app: FrontController and MVC patterns implementation. * active_record: ActiveRecord pattern implementation(Rails alike flavour, http://rubyonrails.com/) * dbal: Database Abstraction Layer which supports MySql, PostgreSQL and Oracle at the moment. * session: transparent PHP session wrappers with painless persistence of objects Migrate from Limb3 to <=Limb4.4: * rename class files (remove '.class' extension) * add namespaces to all classes * change all lmb_require() to 'use' * core: lmb_env_* methods change to lmbEnv::* calls * dbal: driver "mysqli" removed. Use "mysql" instead * toolkit: App Toolkit should return array of used toolkits by getRequiredTools() method * filter_chain: Application class method process should be compatible with limb\filter_chain\src\lmbFilterChain::process($request = NULL, $response = NULL) * filter_chain: method run all of filter classes must be compatible with limb\filter_chain\src\lmbInterceptingFilterInterface::run($filter_chain, $request, $response); and return HttpResponse; method next() must be compatible with limb\filter_chain\src\lmbInterceptingFilterInterface::next($request, $response) * ActiveRecord value objects no more supports "getter" and "field" params. Use "mapping" or "setup_method" * mail: env variable PHPMAILER_VERSION_NAME not using any more * CMS: controller folder renamed to Controllers * validation: remove 'lmb' prefix from riles classes. ErrorList return error collection with keys Migrate from Limb4.4 to >Limb4.4: * require PHP 8.0+ * net: lmbHttpRequest - removed get*() methods Limb5 roadmap: * PSR-4,7,17 * PHP 8.1+ * AR: remove validation, optimize DB connection (no store connection) * Toolkit: improved DI pattern * Remove all of static variables Install * composer require limb-php/limb-framework