如何检查小黄瓜的版本?

时间:2019-03-06 13:11:09

标签: symfony4 behat gherkin

我在Symfony中使用Behat。 Behat通过composer作为Symfony软件包安装。我的Connection con = null; PreparedStatement stmt = null; ResultSet rs = null; try { // your code } catch (SQLException e) { e.printStackTrace(); } finally { try { if (rs != null) rs.close(); } catch (Exception e) {e.printStackTrace();} try { if (stmt != null) stmt.close(); } catch (Exception e) {e.printStackTrace();} try { if (conn != null) conn.close(); } catch (Exception e) {e.printStackTrace();} } 中没有提到小黄瓜。

如何检查小黄瓜的版本?

1 个答案:

答案 0 :(得分:3)

Gherkin被安装为Behat的依赖项。

您可以使用composer检查安装的版本:

composer show behat/gherkin