Skip to content
This repository was archived by the owner on Aug 10, 2023. It is now read-only.

Commit dc006c4

Browse files
committed
Initial
0 parents  commit dc006c4

11 files changed

+1782
-0
lines changed

.env.dist

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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=b6c2b0a77d5b8b07fa93a30d00dac3fc
8+
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
9+
#TRUSTED_HOSTS=localhost,example.com
10+
###< symfony/framework-bundle ###

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
###> symfony/framework-bundle ###
3+
.env
4+
/public/bundles/
5+
/var/
6+
/vendor/
7+
###< symfony/framework-bundle ###

composer.json

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "timobakx/controller-annotation-routing-bundle",
3+
"type": "symfony-bundle",
4+
"description": "Bundle to automatically load all controllers through the annotation routing",
5+
"license": "MIT",
6+
"require": {
7+
"php": "^7.1.3",
8+
"symfony/config": "^4.0",
9+
"symfony/dependency-injection": "^4.0",
10+
"symfony/framework-bundle": "^4.0",
11+
"symfony/yaml": "^4.0",
12+
"zendframework/zend-code": "^3.3"
13+
},
14+
"require-dev": {
15+
"roave/security-advisories": "dev-master",
16+
"symfony/dotenv": "^4.0"
17+
},
18+
"config": {
19+
"preferred-install": {
20+
"*": "dist"
21+
},
22+
"sort-packages": true
23+
},
24+
"autoload": {
25+
"psr-4": {
26+
"TimoBakx\\ControllerAnnotationRoutingBundle\\": "src/"
27+
}
28+
},
29+
"autoload-dev": {
30+
"psr-4": {
31+
"TimoBakx\\ControllerAnnotationRoutingBundle\\Tests\\": "tests/"
32+
}
33+
},
34+
"replace": {
35+
"symfony/polyfill-iconv": "*",
36+
"symfony/polyfill-php71": "*",
37+
"symfony/polyfill-php70": "*",
38+
"symfony/polyfill-php56": "*"
39+
},
40+
"extra": {
41+
"symfony": {
42+
"id": "01C8DHCSFR0FZ8DMWRXHM5W6ZR",
43+
"allow-contrib": false
44+
}
45+
}
46+
}

0 commit comments

Comments
 (0)