개발 지식

개발 지식

PHP PHP + Symfony 컴포넌트만으로 경량 프레임워크 만들기

페이지 정보

profile_image
영삼이
0건 196회 25-03-28 23:06

본문

✅ PHP + Symfony 컴포넌트만으로 경량 프레임워크 만들기

Laravel이나 Symfony 전체를 쓰지 않고, Symfony 컴포넌트들만 조합해서 필요한 기능만 갖춘 경량 프레임워크를 만들 수 있습니다. 이 방식은 성능 최적화나 마이크로서비스 구성 시 유리합니다.


⚙️ 필요한 주요 컴포넌트

  • HttpFoundation – 요청/응답 처리

  • Routing – 라우팅

  • EventDispatcher – 이벤트 처리

  • DependencyInjection – DI 컨테이너

  • Console – CLI 앱


🧱 composer 설치

composer require symfony/http-foundation symfony/routing symfony/dependency-injection symfony/event-dispatcher symfony/config

📁 디렉토리 구조 예시

project/
├── public/
│   └── index.php
├── src/
│   └── Controller/
│       └── HomeController.php
├── config/
│   └── routes.php
├── vendor/

🧩 라우팅 설정

config/routes.php

[code=php]
use Symfony\Component\Routing\RouteCollection;
use Symfony\Component\Routing\Route;

$routes = new RouteCollection();

$routes->add('home', new Route('/', [
    '_controller' => [App\Controller\HomeController::class, 'index']
]));

return $routes;
[/code]

🧩 컨트롤러 예시

src/Controller/HomeController.php

[code=php]
namespace App\Controller;

use Symfony\Component\HttpFoundation\Response;

class HomeController {
    public function index(): Response {
        return new Response('Hello from mini-framework!');
    }
}
[/code]

🚀 진입점 index.php

public/index.php

[code=php]
require_once __DIR__ . '/../vendor/autoload.php';

use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\RequestContext;
use Symfony\Component\Routing\Matcher\UrlMatcher;

$routes = require __DIR__ . '/../config/routes.php';

$request = Request::createFromGlobals();
$context = new RequestContext();
$context->fromRequest($request);
$matcher = new UrlMatcher($routes, $context);

$parameters = $matcher->match($request->getPathInfo());
$controller = $parameters['_controller'];
unset($parameters['_controller'], $parameters['_route']);

$response = call_user_func_array($controller, $parameters);
$response->send();
[/code]

✅ 장점

  • Composer로 필요한 기능만 설치 가능

  • 불필요한 기능 제외 → 성능 최적화

  • 전체 프레임워크 종속 없이 자유로운 구조 설계 가능


⚠️ 주의사항

  • 직접 구성해야 하므로 초기 셋업은 복잡할 수 있음

  • 기능 추가 시 Symfony 컴포넌트들 간 의존성 주의


댓글목록

등록된 댓글이 없습니다.