Skip to content

Commit 012f35d

Browse files
committed
Use new repository structure
1 parent 0c95d34 commit 012f35d

8 files changed

+342
-340
lines changed

.gitignore

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
/app/config/parameters.yml
12
/web/bundles/
23
/var/bootstrap.php.cache
34
/var/cache/*
4-
/app/config/parameters.yml
5-
/var/logs/*
65
!var/cache/.gitkeep
6+
/var/logs/*
77
!var/logs/.gitkeep
8+
/var/sessions/*
9+
!var/sessions/.gitkeep
810
/build/
911
/vendor/
1012
/bin/

app/AppKernel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public function registerBundles()
1111
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
1212
new Symfony\Bundle\TwigBundle\TwigBundle(),
1313
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
14-
new PhpBenchmarksSymfony\Bundle\RestBundle\RestBundle()
14+
new PhpBenchmarksSymfony\RestApiBundle\RestApiBundle()
1515
];
1616
}
1717

app/config/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ parameters:
77
framework:
88
secret: '%secret%'
99
router:
10-
resource: "@RestBundle/Resources/config/routing.yml"
10+
resource: "@RestApiBundle/Resources/config/routing.yml"
1111
strict_requirements: ~
1212
form: ~
1313
csrf_protection: ~

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "phpbenchmarks/symfony-3-2",
2+
"name": "phpbenchmarks/symfony",
33
"license": "proprietary",
44
"type": "project",
55
"autoload": {
@@ -15,7 +15,7 @@
1515
"sensio/framework-extra-bundle": "^3.0.2",
1616
"symfony/polyfill-apcu": "^1.0",
1717
"symfony/symfony": "3.2.*",
18-
"phpbenchmarks/symfony": "1.0.0"
18+
"phpbenchmarks/symfony-common": "3.3.0"
1919
},
2020
"scripts": {
2121
"symfony-scripts": [

0 commit comments

Comments
 (0)