Laravel 5.6 updates
Travis config update Removed HHVM script as Laravel no longer support HHVM after releasing 5.3
This commit is contained in:
9
vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale-but-not-localized.xml
vendored
Normal file
9
vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale-but-not-localized.xml
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<routes xmlns="http://symfony.com/schema/routing"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/routing
|
||||
http://symfony.com/schema/routing/routing-1.0.xsd">
|
||||
<route id="imported" path="/suffix">
|
||||
<default key="_controller">MyBundle:Blog:show</default>
|
||||
</route>
|
||||
</routes>
|
4
vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale-but-not-localized.yml
vendored
Normal file
4
vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale-but-not-localized.yml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
imported:
|
||||
controller: ImportedController::someAction
|
||||
path: /imported
|
11
vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale.xml
vendored
Normal file
11
vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale.xml
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<routes xmlns="http://symfony.com/schema/routing"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/routing
|
||||
http://symfony.com/schema/routing/routing-1.0.xsd">
|
||||
<route id="imported">
|
||||
<default key="_controller">MyBundle:Blog:show</default>
|
||||
<path locale="en">/suffix</path>
|
||||
<path locale="fr">/le-suffix</path>
|
||||
</route>
|
||||
</routes>
|
6
vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale.yml
vendored
Normal file
6
vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale.yml
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
imported:
|
||||
controller: ImportedController::someAction
|
||||
path:
|
||||
nl: /voorbeeld
|
||||
en: /example
|
5
vendor/symfony/routing/Tests/Fixtures/localized/importer-with-controller-default.yml
vendored
Normal file
5
vendor/symfony/routing/Tests/Fixtures/localized/importer-with-controller-default.yml
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
i_need:
|
||||
defaults:
|
||||
_controller: DefaultController::defaultAction
|
||||
resource: ./localized-route.yml
|
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<routes xmlns="http://symfony.com/schema/routing"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/routing
|
||||
http://symfony.com/schema/routing/routing-1.0.xsd">
|
||||
<import resource="./imported-with-locale-but-not-localized.xml">
|
||||
<prefix locale="fr">/le-prefix</prefix>
|
||||
<prefix locale="en">/the-prefix</prefix>
|
||||
</import>
|
||||
</routes>
|
@@ -0,0 +1,6 @@
|
||||
---
|
||||
i_need:
|
||||
resource: ./imported-with-locale-but-not-localized.yml
|
||||
prefix:
|
||||
nl: /nl
|
||||
en: /en
|
10
vendor/symfony/routing/Tests/Fixtures/localized/importer-with-locale.xml
vendored
Normal file
10
vendor/symfony/routing/Tests/Fixtures/localized/importer-with-locale.xml
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<routes xmlns="http://symfony.com/schema/routing"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/routing
|
||||
http://symfony.com/schema/routing/routing-1.0.xsd">
|
||||
<import resource="./imported-with-locale.xml">
|
||||
<prefix locale="fr">/le-prefix</prefix>
|
||||
<prefix locale="en">/the-prefix</prefix>
|
||||
</import>
|
||||
</routes>
|
6
vendor/symfony/routing/Tests/Fixtures/localized/importer-with-locale.yml
vendored
Normal file
6
vendor/symfony/routing/Tests/Fixtures/localized/importer-with-locale.yml
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
i_need:
|
||||
resource: ./imported-with-locale.yml
|
||||
prefix:
|
||||
nl: /nl
|
||||
en: /en
|
3
vendor/symfony/routing/Tests/Fixtures/localized/importing-localized-route.yml
vendored
Normal file
3
vendor/symfony/routing/Tests/Fixtures/localized/importing-localized-route.yml
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
---
|
||||
i_need:
|
||||
resource: ./localized-route.yml
|
9
vendor/symfony/routing/Tests/Fixtures/localized/localized-route.yml
vendored
Normal file
9
vendor/symfony/routing/Tests/Fixtures/localized/localized-route.yml
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
home:
|
||||
path:
|
||||
nl: /nl
|
||||
en: /en
|
||||
|
||||
not_localized:
|
||||
controller: HomeController::otherAction
|
||||
path: /here
|
5
vendor/symfony/routing/Tests/Fixtures/localized/missing-locale-in-importer.yml
vendored
Normal file
5
vendor/symfony/routing/Tests/Fixtures/localized/missing-locale-in-importer.yml
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
importing_with_missing_prefix:
|
||||
resource: ./localized-route.yml
|
||||
prefix:
|
||||
nl: /prefix
|
4
vendor/symfony/routing/Tests/Fixtures/localized/not-localized.yml
vendored
Normal file
4
vendor/symfony/routing/Tests/Fixtures/localized/not-localized.yml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
not_localized:
|
||||
controller: string
|
||||
path: /here
|
7
vendor/symfony/routing/Tests/Fixtures/localized/officially_formatted_locales.yml
vendored
Normal file
7
vendor/symfony/routing/Tests/Fixtures/localized/officially_formatted_locales.yml
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
official:
|
||||
controller: HomeController::someAction
|
||||
path:
|
||||
fr.UTF-8: /omelette-au-fromage
|
||||
pt-PT: /eu-não-sou-espanhol
|
||||
pt_BR: /churrasco
|
3
vendor/symfony/routing/Tests/Fixtures/localized/route-without-path-or-locales.yml
vendored
Normal file
3
vendor/symfony/routing/Tests/Fixtures/localized/route-without-path-or-locales.yml
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
---
|
||||
routename:
|
||||
controller: Here::here
|
Reference in New Issue
Block a user