Created
July 11, 2012 19:17
-
-
Save hugoleodev/3092543 to your computer and use it in GitHub Desktop.
Application.ini funcionando
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[production] | |
; -------------------------- | |
; PHP Specific Configuration | |
; -------------------------- | |
phpSettings.display_startup_errors = 0 | |
phpSettings.display_errors = 0 | |
includePaths.library = APPLICATION_PATH "/../library" | |
; ---------------------------------------- | |
; Zend Framework Application Configuration | |
; ---------------------------------------- | |
bootstrap.path = APPLICATION_PATH "/Bootstrap.php" | |
bootstrap.class = "Bootstrap" | |
pluginPaths.Bisna\Application\Resource\ = "Bisna/Application/Resource" | |
autoloaderNamespaces[] = Bisna | |
autoloaderNamespaces[] = Application\Entity | |
autoloaderNamespaces[] = Core | |
autoloaderNamespaces[] = Application | |
autoloaderNamespaces[] = Zend | |
appnamespace = "Application" | |
; ------------------------------ | |
; Front Controller Configuration | |
; ------------------------------ | |
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers" | |
resources.frontController.params.displayExceptions = 0 | |
resources.frontController.defaultmodule = 'default' | |
resources.modules[] = "admin" | |
resources.modules[] = "default" | |
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules" | |
resources.frontController.params.prefixDefaultModule = "1" | |
resources.frontController.env = APPLICATION_ENV | |
resources.frontController.defaultModule = "default" | |
resources.frontController.baseUrl = "/" | |
resources.view.encoding = "UTF-8" | |
resources.view.basePath = APPLICATION_PATH "/modules/default/views" | |
resources.layout.layoutPath = APPLICATION_PATH "/modules/default/views/layouts" | |
resources.frontController.plugins.layout = "\Core\Plugin\Layout" | |
resources.frontController.plugins.navigation = "\Core\Plugin\Navigation" | |
resources.frontController.plugins.auth = \Core\Plugin\Auth | |
; ------------------------------------------------------------------------------ | |
; Doctrine Class Loader Configuration | |
; ------------------------------------------------------------------------------ | |
resources.doctrine.classLoader.loaderClass = "Doctrine\Common\ClassLoader" | |
resources.doctrine.classLoader.loaderFile = APPLICATION_PATH "/../library/vendor/Doctrine/lib/vendor/doctrine-common/lib/Doctrine/Common/ClassLoader.php" | |
resources.doctrine.classLoader.loaders.doctrine_common.namespace = "Doctrine\Common" | |
resources.doctrine.classLoader.loaders.doctrine_common.includePath = APPLICATION_PATH "/../library/vendor/Doctrine/lib/vendor/doctrine-common/lib" | |
resources.doctrine.classLoader.loaders.doctrine_dbal.namespace = "Doctrine\DBAL" | |
resources.doctrine.classLoader.loaders.doctrine_dbal.includePath = APPLICATION_PATH "/../library/vendor/Doctrine/lib/vendor/doctrine-dbal/lib" | |
resources.doctrine.classLoader.loaders.doctrine_orm.namespace = "Doctrine\ORM" | |
resources.doctrine.classLoader.loaders.doctrine_orm.includePath = APPLICATION_PATH "/../library/vendor/Doctrine/lib" | |
resources.doctrine.classLoader.loaders.symfony_console.namespace = "Symfony\Component\Console" | |
resources.doctrine.classLoader.loaders.symfony_console.includePath = APPLICATION_PATH "/../library/vendor/Doctrine/lib/vendor" | |
resources.doctrine.classLoader.loaders.symfony_yaml.namespace = "Symfony\Component\Yaml" | |
resources.doctrine.classLoader.loaders.symfony_yaml.includePath = APPLICATION_PATH "/../library/vendor/Doctrine/lib/vendor" | |
; ------------------------------------------------------------------------------ | |
; Doctrine Cache Configuration | |
; ------------------------------------------------------------------------------ | |
; Points to default cache instance to be used. Optional is only one cache is defined | |
resources.doctrine.cache.defaultCacheInstance = default | |
; Cache Instance configuration for "default" cache | |
;resources.doctrine.cache.instances.default.id = default | |
resources.doctrine.cache.instances.default.adapterClass = "Doctrine\Common\Cache\MemcacheCache" | |
resources.doctrine.cache.instances.default.namespace = "Application_" | |
resources.doctrine.cache.instances.default.options.servers.0.host = localhost | |
resources.doctrine.cache.instances.default.options.servers.0.port = 11211 | |
;resources.doctrine.cache.instances.default.options.servers.0.persistent = true | |
;resources.doctrine.cache.instances.default.options.servers.0.weight = 1 | |
;resources.doctrine.cache.instances.default.options.servers.0.timeout = 1 | |
;resources.doctrine.cache.instances.default.options.servers.0.retryInterval = 15 | |
;resources.doctrine.cache.instances.default.options.servers.0.status = true | |
; ------------------------------------------------------------------------------ | |
; Doctrine DBAL Configuration | |
; ------------------------------------------------------------------------------ | |
; Points to default connection to be used. Optional if only one connection is defined | |
resources.doctrine.dbal.defaultConnection = default | |
; DBAL Connection configuration for "default" connection | |
;resources.doctrine.dbal.connections.default.id = default | |
;resources.doctrine.dbal.connections.default.eventManagerClass = "Doctrine\Common\EventManager" | |
;resources.doctrine.dbal.connections.default.eventSubscribers[] = "DoctrineExtensions\Sluggable\SluggableSubscriber" | |
;resources.doctrine.dbal.connections.default.configurationClass = "Doctrine\DBAL\Configuration" | |
;resources.doctrine.dbal.connections.default.sqlLoggerClass = "Doctrine\DBAL\Logging\EchoSQLLogger" | |
;resources.doctrine.dbal.connections.default.types.my_type = "Application\DBAL\Type\MyType" | |
; Database configuration | |
;resources.doctrine.dbal.connections.default.parameters.wrapperClass = "" | |
resources.doctrine.dbal.connections.default.parameters.driver = "pdo_mysql" | |
resources.doctrine.dbal.connections.default.parameters.dbname = "msot" | |
resources.doctrine.dbal.connections.default.parameters.host = "localhost" | |
resources.doctrine.dbal.connections.default.parameters.port = 3306 | |
resources.doctrine.dbal.connections.default.parameters.user = "root" | |
resources.doctrine.dbal.connections.default.parameters.password = "MYHomeSql" | |
;resources.doctrine.dbal.connections.default.parameters.driverOptions.ATTR_USE_BUFFERED_QUERIES = true | |
; ------------------------------------------------------------------------------ | |
; Doctrine ORM Configuration | |
; ------------------------------------------------------------------------------ | |
; Points to default EntityManager to be used. Optional if only one EntityManager is defined | |
resources.doctrine.orm.defaultEntityManager = default | |
; EntityManager configuration for "default" manager | |
;resources.doctrine.orm.entityManagers.default.id = default | |
;resources.doctrine.orm.entityManagers.default.entityManagerClass = "Doctrine\ORM\EntityManager" | |
;resources.doctrine.orm.entityManagers.default.configurationClass = "Doctrine\ORM\Configuration" | |
resources.doctrine.orm.entityManagers.default.defaultRepositoryClass = "Application\Entity\DefaultRepository" | |
resources.doctrine.orm.entityManagers.default.entityNamespaces.app = "Application\Entity" | |
resources.doctrine.orm.entityManagers.default.connection = default | |
resources.doctrine.orm.entityManagers.default.proxy.autoGenerateClasses = true | |
resources.doctrine.orm.entityManagers.default.proxy.namespace = "Application\Entity\Proxy" | |
resources.doctrine.orm.entityManagers.default.proxy.dir = APPLICATION_PATH "/../library/Application/Entity/Proxy" | |
;resources.doctrine.orm.entityManagers.default.metadataCache = default | |
;resources.doctrine.orm.entityManagers.default.queryCache = default | |
;resources.doctrine.orm.entityManagers.default.resultCache = default | |
;resources.doctrine.orm.entityManagers.default.DQLFunctions.numeric.PI = "DoctrineExtensions\ORM\Query\Functions\Numeric\PiFunction" | |
resources.doctrine.orm.entityManagers.default.metadataDrivers.annotationRegistry.annotationFiles[] = APPLICATION_PATH "/../library/vendor/Doctrine/lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php" | |
;resources.doctrine.orm.entityManagers.default.metadataDrivers.annotationRegistry.annotationNamespaces.0.namespace = "Gedmo" | |
;resources.doctrine.orm.entityManagers.default.metadataDrivers.annotationRegistry.annotationNamespaces.0.includePath = APPLICATION_PATH "/../library/vendor" | |
resources.doctrine.orm.entityManagers.default.metadataDrivers.drivers.0.adapterClass = "Doctrine\ORM\Mapping\Driver\AnnotationDriver" | |
resources.doctrine.orm.entityManagers.default.metadataDrivers.drivers.0.mappingNamespace = "Application\Entity" | |
resources.doctrine.orm.entityManagers.default.metadataDrivers.drivers.0.mappingDirs[] = APPLICATION_PATH "/../library/Application/Entity" | |
resources.doctrine.orm.entityManagers.default.metadataDrivers.drivers.0.annotationReaderClass = "Doctrine\Common\Annotations\AnnotationReader" | |
resources.doctrine.orm.entityManagers.default.metadataDrivers.drivers.0.annotationReaderCache = default | |
;resources.doctrine.orm.entityManagers.default.metadataDrivers.drivers.0.annotationReaderNamespaces.App = "Application\DoctrineExtensions\ORM\Mapping" | |
;; Service Locator | |
resources.serviceLocator.context.adapterClass = "Bisna\Service\Context\IniFileContext" | |
resources.serviceLocator.context.options.path = APPLICATION_PATH "/configs/services.ini" | |
resources.serviceLocator.context.options.serviceOptions.rw = default ; Points to Doctrine EntityManager instance | |
resources.serviceLocator.context.options.serviceOptions.r = default ; Points to Doctrine EntityManager instance | |
resources.db.adapter = "PDO_MYSQL" | |
resources.db.isdefaulttableadapter = true | |
resources.db.params.dbname = "msot" | |
resources.db.params.username = "root" | |
resources.db.params.password = "MYHomeSql" | |
resources.db.params.host = "localhost" | |
resources.db.params.charset = "UTF8" | |
resources.router.routes.activate.route = "activate/:confirmation-code" | |
resources.router.routes.activate.defaults.module = default | |
resources.router.routes.activate.defaults.controller = user | |
resources.router.routes.activate.defaults.action = activate | |
resources.router.routes.activate.defaults.confimation-code = null | |
resources.router.routes.activate.reqs.category = "[^\s]+" | |
;resources.router.routes.login.route = "login" | |
;resources.router.routes.login.defaults.module = default | |
;resources.router.routes.login.defaults.controller = user | |
;resources.router.routes.login.defaults.action = login | |
[staging : production] | |
[testing : production] | |
phpSettings.display_startup_errors = 1 | |
phpSettings.display_errors = 1 | |
[development : production] | |
phpSettings.display_startup_errors = 1 | |
phpSettings.display_errors = 1 | |
resources.frontController.params.displayExceptions = 1 | |
resources.doctrine.cache.instances.default.adapterClass = "Doctrine\Common\Cache\ArrayCache" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment