現在、Symfony 4 用のこの PHP スプレッドシート バンドルを使用しようとしています: https://github.com/roromix/SpreadsheetBundle
しかし、このバンドルを使用しようとしても成功しません。サービス (php bin/console debug:autowiring) としてそれを見つけることができず、以下の方法も間違っています。
<?php
namespace App\Controller;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Roromix\Bundle\SpreadsheetBundle\RoromixSpreadsheetBundle;
class TranslationController extends Controller
{
/**
* @Route("/")
*/
public function index()
{
$RoromixSpreadsheetBundle = new RoromixSpreadsheetBundle();
//...
}
}
?>