anzubko / swf
Simplest framework
0.0.138
2024-11-02 22:08 UTC
Requires
- php: >=8.2
- ext-curl: *
- ext-gd: *
- ext-intl: *
- ext-mbstring: *
- ext-zlib: *
- anzubko/swf-core: *
- phpdocumentor/reflection-docblock: ^5.4.1
- symfony/property-access: ^7.1.4
- symfony/serializer: ^7.1.5
- symfony/validator: ^7.1.5
Requires (Dev)
- anzubko/swf-phpstan: ^1.0.2
- phpstan/phpstan: ^1.12.4
This package is auto-updated.
Last update: 2026-05-29 01:53:43 UTC
README
For reference only, because the project is under development.
Installation
composer create-project anzubko/swf
Apache/mod_php
DocumentRoot {SITE_ROOT}/public <Directory {SITE_ROOT}/public> FallbackResource /.bin/index.php </Directory>
Nginx/PHP-FPM
root {SITE_ROOT}/public; location / { try_files $uri /.bin/index.php$is_args$args; } location /.bin { fastcgi_pass {PHP_FPM_URL}:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }