We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c8afa0 commit ce0e10aCopy full SHA for ce0e10a
README.md
@@ -145,6 +145,15 @@ $app->register(new DoctrineOrmServiceProvider, array(
145
"namespace" => "Bat\Entities",
146
"path" => __DIR__."/src/Bat/Resources/mappings",
147
),
148
+ // As of 1.1, you can also use the simplified
149
+ // XML/YAML driver (Symfony2 style)
150
+ // Mapping files can be named like Foo.orm.yml
151
+ // instead of Baz.Entities.Foo.dcm.yml
152
+ array(
153
+ "type" => "simple_yml",
154
+ "namespace" => "Baz\Entities",
155
+ "path" => __DIR__."/src/Bat/Resources/config/doctrine",
156
+ ),
157
// Using PSR-0 namespaceish embedded resources
158
// (requires registering a PSR-0 Resource Locator
159
// Service Provider)
0 commit comments