Browse Source

Documentation

tags/4.0.15.1
Steevan BARBOYON 8 years ago
parent
commit
fa5c2685f9

+ 0
- 8
.env.dist View File

1
-# This file is a "template" of which env vars need to be defined for your application
2
-# Copy this file to .env file for development, create environment variables when deploying to production
3
-# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
4
-
5
-###> symfony/framework-bundle ###
6
-APP_ENV=dev
7
-APP_SECRET=2d89aad842f1f606283c4246512d616b
8
-###< symfony/framework-bundle ###

+ 29
- 0
README.md View File

1
+<p align="center">
2
+  <img src="http://www.phpbenchmarks.com/images/logo_github.png">
3
+  <br>
4
+  <a href="http://www.phpbenchmarks.com" target="_blank">www.phpbenchmarks.com</a>
5
+</p>
6
+
7
+## What is www.phpbenchmarks.com ?
8
+
9
+You will find lot of benchmarks for PHP frameworks, ORM and libs here.
10
+
11
+You can compare results between Apache Bench and Siege, PHP 5.6 to 7.2 and versions of your favorites PHP code.
12
+
13
+## What is this repository ?
14
+
15
+It's benchmark source code for Symfony 4.0.
16
+
17
+You will not find final source code here, as it's in [phpbenchmarks/symfony](https://github.com/phpbenchmarks/symfony/tree/1.0.0) dependency.
18
+
19
+You can find how we benchmark it [here](http://www.phpbenchmarks.com/en/benchmark-protocol).
20
+
21
+## Symfony 4.0.0
22
+
23
+Benchmark | Tool | PHP | Score
24
+--------- | ---- | --- | -----
25
+[Hello World](http://www.phpbenchmarks.com/en/benchmark/apache-bench/php-7.1/symfony-4.0.html#benchmark-hello-world) | Apache Bench | 7.1 | In progress
26
+[News](http://www.phpbenchmarks.com/en/benchmark/apache-bench/php-7.1/symfony-4.0.html#benchmark-news) | Apache Bench | 7.1 | In progress
27
+[Rest API](http://www.phpbenchmarks.com/en/benchmark/apache-bench/php-7.1/symfony-4.0.html#benchmark-rest) | Apache Bench | 7.1 | In progress
28
+
29
+Scores are too low ? Do not hesitate to create a pull request, and ask a new benchmark !

+ 0
- 3
config/helloworld/packages/framework.yaml View File

1
 framework:
1
 framework:
2
     secret: '%env(APP_SECRET)%'
2
     secret: '%env(APP_SECRET)%'
3
-    #default_locale: en
4
-    #http_method_override: true
5
-
6
     php_errors:
3
     php_errors:
7
         log: true
4
         log: true

+ 0
- 3
config/rest/packages/framework.yaml View File

1
 framework:
1
 framework:
2
     secret: '%env(APP_SECRET)%'
2
     secret: '%env(APP_SECRET)%'
3
-    #default_locale: en
4
-    #http_method_override: true
5
-
6
     php_errors:
3
     php_errors:
7
         log: true
4
         log: true

+ 0
- 3
config/routes/annotations.yaml View File

1
-controllers:
2
-    resource: ../../src/Controller/
3
-    type: annotation

Loading…
Cancel
Save