├── BUGS ├── CREDITS ├── DEVELOPERS ├── FAQ ├── HISTORY ├── INSTALL ├── LICENSE ├── README.md ├── TODO ├── TRANSLATORS ├── admin.php ├── aggregates.php ├── ajax-ac-insert.php ├── all_db.php ├── browser.php ├── casts.php ├── classes ├── ArrayRecordSet.php ├── Gui.php ├── Misc.php ├── Plugin.php ├── PluginManager.php ├── class.select.php └── database │ ├── ADODB_base.php │ ├── Connection.php │ ├── Postgres.php │ ├── Postgres74.php │ ├── Postgres80.php │ ├── Postgres81.php │ ├── Postgres82.php │ ├── Postgres83.php │ ├── Postgres84.php │ ├── Postgres90.php │ ├── Postgres91.php │ ├── Postgres92.php │ └── Postgres93.php ├── colproperties.php ├── composer.json ├── composer.lock ├── conf └── config.inc.php ├── constraints.php ├── conversions.php ├── database.php ├── dataexport.php ├── dataimport.php ├── dbexport.php ├── display.php ├── domains.php ├── fulltext.php ├── functions.js ├── functions.php ├── groups.php ├── help.php ├── help ├── PostgresDoc74.php ├── PostgresDoc80.php ├── PostgresDoc81.php ├── PostgresDoc82.php ├── PostgresDoc83.php ├── PostgresDoc84.php ├── PostgresDoc90.php ├── PostgresDoc91.php ├── PostgresDoc92.php ├── PostgresDoc93.php └── PostgresDoc94.php ├── history.php ├── images └── themes │ ├── bootstrap │ ├── Favicon.ico │ ├── Introduction.png │ └── title.png │ ├── cappuccino │ ├── Lminus.png │ ├── Lplus.png │ ├── Tminus.png │ ├── Tplus.png │ ├── inputbckg.png │ ├── openListe.png │ └── title.png │ └── default │ ├── AddArguments.png │ ├── Admin.png │ ├── Aggregate.png │ ├── Aggregates.png │ ├── AllUsers.png │ ├── AvailableReplicationSet.png │ ├── AvailableSubscription.png │ ├── Backup.png │ ├── Cast.png │ ├── Casts.png │ ├── CheckConstraint.png │ ├── Cluster.png │ ├── Column.png │ ├── Columns.png │ ├── Constraints.png │ ├── Conversion.png │ ├── Conversions.png │ ├── Copy.png │ ├── CorruptedDatabase.png │ ├── Cut.png │ ├── Database.png │ ├── Databases.png │ ├── Definition.png │ ├── Delete.png │ ├── DisabledJob.png │ ├── DisconnectedDatabase.png │ ├── DisconnectedServer.png │ ├── Domain.png │ ├── Domains.png │ ├── EnableArgument.png │ ├── Erase.png │ ├── Execute.png │ ├── ExecuteSave.png │ ├── Explain.png │ ├── Export.png │ ├── Favicon.ico │ ├── Filter.png │ ├── ForeignKey.png │ ├── Fts.png │ ├── FtsCfg.png │ ├── FtsDict.png │ ├── FtsParser.png │ ├── Function.png │ ├── Functions.png │ ├── GurusHint.png │ ├── Help.png │ ├── Histories.png │ ├── History.png │ ├── I.png │ ├── Import.png │ ├── Index.png │ ├── Indexes.png │ ├── Introduction.png │ ├── Job.png │ ├── Jobs.png │ ├── Key.png │ ├── L.png │ ├── Language.png │ ├── Languages.png │ ├── Listen.png │ ├── Listens.png │ ├── Lminus.png │ ├── Loading.gif │ ├── LowerArgument.png │ ├── Lplus.png │ ├── Node.png │ ├── Nodes.png │ ├── ObjectNotFound.png │ ├── OfferedReplicationSet.png │ ├── OfferedSubscription.png │ ├── Open.png │ ├── Operator.png │ ├── OperatorClass.png │ ├── OperatorClasses.png │ ├── Operators.png │ ├── Paste.png │ ├── Path.png │ ├── Paths.png │ ├── PrimaryKey.png │ ├── Privileges.png │ ├── Processes.png │ ├── Property.png │ ├── RaiseArgument.png │ ├── Record.png │ ├── Records.png │ ├── Redo.png │ ├── Refresh.png │ ├── RemoveArgument.png │ ├── Replication.png │ ├── ReplicationSets.png │ ├── Restore.png │ ├── Roles.png │ ├── Rule.png │ ├── Rules.png │ ├── Save.png │ ├── Schedule.png │ ├── Schedules.png │ ├── Schema.png │ ├── Schemas.png │ ├── Search.png │ ├── Sequence.png │ ├── Sequences.png │ ├── Server.png │ ├── Servers.png │ ├── SqlEditor.png │ ├── Statistics.png │ ├── Step.png │ ├── Steps.png │ ├── Stop.png │ ├── Subscriptions.png │ ├── T.png │ ├── Table.png │ ├── Tables.png │ ├── Tablespace.png │ ├── Tablespaces.png │ ├── Tminus.png │ ├── Tplus.png │ ├── Trigger.png │ ├── TriggerFunction.png │ ├── TriggerFunctions.png │ ├── Triggers.png │ ├── Type.png │ ├── Types.png │ ├── Undo.png │ ├── UniqueConstraint.png │ ├── User.png │ ├── UserGroup.png │ ├── UserGroups.png │ ├── Users.png │ ├── Variables.png │ ├── View.png │ ├── Views.png │ ├── blank.png │ └── title.png ├── index.php ├── indexes.js ├── indexes.php ├── info.php ├── intro.php ├── js ├── ac_insert_row.js ├── database.js └── display.js ├── lang ├── README ├── afrikaans.php ├── arabic.php ├── catalan.php ├── chinese-sim.php ├── chinese-tr.php ├── chinese-utf8-zh_CN.php ├── chinese-utf8-zh_TW.php ├── czech.php ├── danish.php ├── dutch.php ├── english.php ├── french.php ├── galician.php ├── german.php ├── greek.php ├── hebrew.php ├── hungarian.php ├── italian.php ├── japanese.php ├── langcheck ├── lithuanian.php ├── mongol.php ├── polish.php ├── portuguese-br.php ├── portuguese-pt.php ├── romanian.php ├── russian-utf8.php ├── russian.php ├── slovak.php ├── spanish.php ├── swedish.php ├── synch ├── translations.php ├── turkish.php └── ukrainian.php ├── languages.php ├── libraries ├── adodb │ ├── adodb-csvlib.inc.php │ ├── adodb-datadict.inc.php │ ├── adodb-error.inc.php │ ├── adodb-iterator.inc.php │ ├── adodb-lib.inc.php │ ├── adodb-time.inc.php │ ├── adodb.inc.php │ ├── drivers │ │ ├── adodb-postgres.inc.php │ │ ├── adodb-postgres64.inc.php │ │ ├── adodb-postgres7.inc.php │ │ └── adodb-postgres8.inc.php │ ├── lang │ │ ├── adodb-ar.inc.php │ │ ├── adodb-bg.inc.php │ │ ├── adodb-bgutf8.inc.php │ │ ├── adodb-ca.inc.php │ │ ├── adodb-cn.inc.php │ │ ├── adodb-cz.inc.php │ │ ├── adodb-da.inc.php │ │ ├── adodb-de.inc.php │ │ ├── adodb-en.inc.php │ │ ├── adodb-es.inc.php │ │ ├── adodb-esperanto.inc.php │ │ ├── adodb-fa.inc.php │ │ ├── adodb-fr.inc.php │ │ ├── adodb-hu.inc.php │ │ ├── adodb-it.inc.php │ │ ├── adodb-nl.inc.php │ │ ├── adodb-pl.inc.php │ │ ├── adodb-pt-br.inc.php │ │ ├── adodb-ro.inc.php │ │ ├── adodb-ru1251.inc.php │ │ ├── adodb-sv.inc.php │ │ ├── adodb-uk1251.inc.php │ │ └── adodb_th.inc.php │ ├── license.txt │ ├── readme.txt │ ├── toexport.inc.php │ └── tohtml.inc.php ├── decorator.inc.php ├── errorhandler.inc.php ├── highlight.php ├── js │ └── jquery.js └── lib.inc.php ├── links.js ├── loader.php ├── login.php ├── logout.php ├── manifest.yml ├── multiactionform.js ├── opclasses.php ├── operators.php ├── plugin.php ├── plugins ├── GuiControl │ ├── conf │ │ └── config.inc.php │ └── plugin.php └── Report │ ├── INSTALL │ ├── README │ ├── classes │ └── Reports.php │ ├── conf │ └── config.inc.php │ ├── images │ ├── Report.png │ └── Reports.png │ ├── lang │ ├── afrikaans.php │ ├── arabic.php │ ├── catalan.php │ ├── chinese-sim.php │ ├── chinese-tr.php │ ├── chinese-utf8-zh_CN.php │ ├── chinese-utf8-zh_TW.php │ ├── czech.php │ ├── danish.php │ ├── dutch.php │ ├── english.php │ ├── french.php │ ├── galician.php │ ├── german.php │ ├── greek.php │ ├── hebrew.php │ ├── hungarian.php │ ├── italian.php │ ├── japanese.php │ ├── lithuanian.php │ ├── mongol.php │ ├── polish.php │ ├── portuguese-br.php │ ├── portuguese-pt.php │ ├── romanian.php │ ├── russian.php │ ├── slovak.php │ ├── spanish.php │ ├── swedish.php │ ├── turkish.php │ └── ukrainian.php │ ├── plugin.php │ └── sql │ └── reports-pgsql.sql ├── privileges.php ├── redirect.php ├── robots.txt ├── roles.php ├── rules.php ├── schemas.php ├── sequences.php ├── servers.php ├── sql.php ├── sqledit.php ├── tables.js ├── tables.php ├── tablespaces.php ├── tblproperties.php ├── themes ├── bootstrap │ ├── global.css │ └── title.png ├── cappuccino │ └── global.css ├── default │ └── global.css ├── global.css ├── gotar │ └── global.css └── themes.php ├── triggers.php ├── types.php ├── users.php ├── vendor ├── arhframe │ ├── util │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Arhframe │ │ │ └── Util │ │ │ ├── File.php │ │ │ ├── Folder.php │ │ │ ├── Proxy.php │ │ │ └── UtilException.php │ └── yamlarh │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Arhframe │ │ └── Yamlarh │ │ ├── FileLoader.php │ │ ├── Yamlarh.php │ │ └── YamlarhNode │ │ ├── AbstractYamlarhNode.php │ │ └── IncludeYamlarhNode.php ├── autoload.php ├── cloudfoundry-community │ └── cf-helper-php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── CfCommunity │ │ └── CfHelper │ │ ├── Application │ │ └── ApplicationInfo.php │ │ ├── CfHelper.php │ │ ├── Configuration │ │ └── PhpIniConfigurator.php │ │ ├── Connectors │ │ ├── AbstractConnector.php │ │ ├── DatabaseConnector.php │ │ ├── MongoDbConnector.php │ │ └── RedisConnector.php │ │ ├── Logger │ │ ├── CloudFoundryHandler.php │ │ └── CloudFoundryLogger.php │ │ ├── Services │ │ ├── Populator.php │ │ ├── PopulatorCloudFoundry.php │ │ ├── Service.php │ │ └── ServiceManager.php │ │ ├── Simulator │ │ └── CloudFoundrySimulator.php │ │ └── sphring │ │ └── main.yml ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ └── installed.json ├── filp │ └── whoops │ │ ├── LICENSE.md │ │ ├── composer.json │ │ └── src │ │ ├── Whoops │ │ ├── Exception │ │ │ ├── ErrorException.php │ │ │ ├── Formatter.php │ │ │ ├── Frame.php │ │ │ ├── FrameCollection.php │ │ │ └── Inspector.php │ │ ├── Handler │ │ │ ├── CallbackHandler.php │ │ │ ├── Handler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── JsonResponseHandler.php │ │ │ ├── PlainTextHandler.php │ │ │ ├── PrettyPageHandler.php │ │ │ ├── SoapResponseHandler.php │ │ │ └── XmlResponseHandler.php │ │ ├── Provider │ │ │ ├── Phalcon │ │ │ │ └── WhoopsServiceProvider.php │ │ │ └── Silex │ │ │ │ └── WhoopsServiceProvider.php │ │ ├── Resources │ │ │ ├── css │ │ │ │ └── whoops.base.css │ │ │ ├── js │ │ │ │ ├── whoops.base.js │ │ │ │ └── zepto.min.js │ │ │ └── views │ │ │ │ ├── env_details.html.php │ │ │ │ ├── frame_code.html.php │ │ │ │ ├── frame_list.html.php │ │ │ │ ├── header.html.php │ │ │ │ └── layout.html.php │ │ ├── Run.php │ │ └── Util │ │ │ ├── Misc.php │ │ │ └── TemplateHelper.php │ │ └── deprecated │ │ └── Zend │ │ ├── ExceptionStrategy.php │ │ ├── Module.php │ │ ├── RouteNotFoundStrategy.php │ │ └── module.config.example.php ├── monolog │ └── monolog │ │ ├── .php_cs │ │ ├── CHANGELOG.mdown │ │ ├── LICENSE │ │ ├── README.mdown │ │ ├── composer.json │ │ ├── doc │ │ ├── extending.md │ │ ├── sockets.md │ │ └── usage.md │ │ ├── phpunit.xml.dist │ │ ├── src │ │ └── Monolog │ │ │ ├── ErrorHandler.php │ │ │ ├── Formatter │ │ │ ├── ChromePHPFormatter.php │ │ │ ├── ElasticaFormatter.php │ │ │ ├── FlowdockFormatter.php │ │ │ ├── FormatterInterface.php │ │ │ ├── GelfMessageFormatter.php │ │ │ ├── HtmlFormatter.php │ │ │ ├── JsonFormatter.php │ │ │ ├── LineFormatter.php │ │ │ ├── LogglyFormatter.php │ │ │ ├── LogstashFormatter.php │ │ │ ├── MongoDBFormatter.php │ │ │ ├── NormalizerFormatter.php │ │ │ ├── ScalarFormatter.php │ │ │ └── WildfireFormatter.php │ │ │ ├── Handler │ │ │ ├── AbstractHandler.php │ │ │ ├── AbstractProcessingHandler.php │ │ │ ├── AbstractSyslogHandler.php │ │ │ ├── AmqpHandler.php │ │ │ ├── BrowserConsoleHandler.php │ │ │ ├── BufferHandler.php │ │ │ ├── ChromePHPHandler.php │ │ │ ├── CouchDBHandler.php │ │ │ ├── CubeHandler.php │ │ │ ├── DoctrineCouchDBHandler.php │ │ │ ├── DynamoDbHandler.php │ │ │ ├── ElasticSearchHandler.php │ │ │ ├── ErrorLogHandler.php │ │ │ ├── FilterHandler.php │ │ │ ├── FingersCrossed │ │ │ │ ├── ActivationStrategyInterface.php │ │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ │ └── ErrorLevelActivationStrategy.php │ │ │ ├── FingersCrossedHandler.php │ │ │ ├── FirePHPHandler.php │ │ │ ├── FleepHookHandler.php │ │ │ ├── FlowdockHandler.php │ │ │ ├── GelfHandler.php │ │ │ ├── GroupHandler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HipChatHandler.php │ │ │ ├── LogEntriesHandler.php │ │ │ ├── LogglyHandler.php │ │ │ ├── MailHandler.php │ │ │ ├── MandrillHandler.php │ │ │ ├── MissingExtensionException.php │ │ │ ├── MongoDBHandler.php │ │ │ ├── NativeMailerHandler.php │ │ │ ├── NewRelicHandler.php │ │ │ ├── NullHandler.php │ │ │ ├── PsrHandler.php │ │ │ ├── PushoverHandler.php │ │ │ ├── RavenHandler.php │ │ │ ├── RedisHandler.php │ │ │ ├── RollbarHandler.php │ │ │ ├── RotatingFileHandler.php │ │ │ ├── SamplingHandler.php │ │ │ ├── SlackHandler.php │ │ │ ├── SocketHandler.php │ │ │ ├── StreamHandler.php │ │ │ ├── SwiftMailerHandler.php │ │ │ ├── SyslogHandler.php │ │ │ ├── SyslogUdp │ │ │ │ └── UdpSocket.php │ │ │ ├── SyslogUdpHandler.php │ │ │ ├── TestHandler.php │ │ │ ├── WhatFailureGroupHandler.php │ │ │ └── ZendMonitorHandler.php │ │ │ ├── Logger.php │ │ │ ├── Processor │ │ │ ├── GitProcessor.php │ │ │ ├── IntrospectionProcessor.php │ │ │ ├── MemoryPeakUsageProcessor.php │ │ │ ├── MemoryProcessor.php │ │ │ ├── MemoryUsageProcessor.php │ │ │ ├── ProcessIdProcessor.php │ │ │ ├── PsrLogMessageProcessor.php │ │ │ ├── TagProcessor.php │ │ │ ├── UidProcessor.php │ │ │ └── WebProcessor.php │ │ │ └── Registry.php │ │ └── tests │ │ ├── Monolog │ │ ├── ErrorHandlerTest.php │ │ ├── Formatter │ │ │ ├── ChromePHPFormatterTest.php │ │ │ ├── ElasticaFormatterTest.php │ │ │ ├── FlowdockFormatterTest.php │ │ │ ├── GelfMessageFormatterTest.php │ │ │ ├── JsonFormatterTest.php │ │ │ ├── LineFormatterTest.php │ │ │ ├── LogglyFormatterTest.php │ │ │ ├── LogstashFormatterTest.php │ │ │ ├── MongoDBFormatterTest.php │ │ │ ├── NormalizerFormatterTest.php │ │ │ ├── ScalarFormatterTest.php │ │ │ └── WildfireFormatterTest.php │ │ ├── Handler │ │ │ ├── AbstractHandlerTest.php │ │ │ ├── AbstractProcessingHandlerTest.php │ │ │ ├── AmqpHandlerTest.php │ │ │ ├── BrowserConsoleHandlerTest.php │ │ │ ├── BufferHandlerTest.php │ │ │ ├── ChromePHPHandlerTest.php │ │ │ ├── CouchDBHandlerTest.php │ │ │ ├── DoctrineCouchDBHandlerTest.php │ │ │ ├── DynamoDbHandlerTest.php │ │ │ ├── ElasticSearchHandlerTest.php │ │ │ ├── ErrorLogHandlerTest.php │ │ │ ├── FilterHandlerTest.php │ │ │ ├── FingersCrossedHandlerTest.php │ │ │ ├── FirePHPHandlerTest.php │ │ │ ├── Fixtures │ │ │ │ └── .gitkeep │ │ │ ├── FleepHookHandlerTest.php │ │ │ ├── FlowdockHandlerTest.php │ │ │ ├── GelfHandlerLegacyTest.php │ │ │ ├── GelfHandlerTest.php │ │ │ ├── GelfMockMessagePublisher.php │ │ │ ├── GroupHandlerTest.php │ │ │ ├── HipChatHandlerTest.php │ │ │ ├── LogEntriesHandlerTest.php │ │ │ ├── MailHandlerTest.php │ │ │ ├── MockRavenClient.php │ │ │ ├── MongoDBHandlerTest.php │ │ │ ├── NativeMailerHandlerTest.php │ │ │ ├── NewRelicHandlerTest.php │ │ │ ├── NullHandlerTest.php │ │ │ ├── PsrHandlerTest.php │ │ │ ├── PushoverHandlerTest.php │ │ │ ├── RavenHandlerTest.php │ │ │ ├── RedisHandlerTest.php │ │ │ ├── RotatingFileHandlerTest.php │ │ │ ├── SamplingHandlerTest.php │ │ │ ├── SlackHandlerTest.php │ │ │ ├── SocketHandlerTest.php │ │ │ ├── StreamHandlerTest.php │ │ │ ├── SwiftMailerHandlerTest.php │ │ │ ├── SyslogHandlerTest.php │ │ │ ├── SyslogUdpHandlerTest.php │ │ │ ├── TestHandlerTest.php │ │ │ ├── UdpSocketTest.php │ │ │ ├── WhatFailureGroupHandlerTest.php │ │ │ └── ZendMonitorHandlerTest.php │ │ ├── LoggerTest.php │ │ ├── Processor │ │ │ ├── GitProcessorTest.php │ │ │ ├── IntrospectionProcessorTest.php │ │ │ ├── MemoryPeakUsageProcessorTest.php │ │ │ ├── MemoryUsageProcessorTest.php │ │ │ ├── ProcessIdProcessorTest.php │ │ │ ├── PsrLogMessageProcessorTest.php │ │ │ ├── TagProcessorTest.php │ │ │ ├── UidProcessorTest.php │ │ │ └── WebProcessorTest.php │ │ ├── PsrLogCompatTest.php │ │ ├── RegistryTest.php │ │ └── TestCase.php │ │ └── bootstrap.php ├── myclabs │ └── php-enum │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Enum.php ├── ocramius │ └── proxy-manager │ │ ├── .scrutinizer.yml │ │ ├── .travis.install.sh │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── STABILITY.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ ├── docs │ │ ├── access-interceptor-scope-localizer.md │ │ ├── access-interceptor-value-holder.md │ │ ├── generator-strategies.md │ │ ├── lazy-loading-ghost-object.md │ │ ├── lazy-loading-value-holder.md │ │ ├── null-object.md │ │ ├── remote-object.md │ │ └── tuning-for-production.md │ │ ├── examples │ │ ├── access-interceptor-scope-localizer.php │ │ ├── ghost-object.php │ │ ├── remote-proxy.php │ │ ├── remote-proxy │ │ │ └── remote-proxy-server.php │ │ ├── smart-reference.php │ │ └── virtual-proxy.php │ │ ├── html-docs │ │ ├── access-interceptor-scope-localizer-proxy.html │ │ ├── access-interceptor-value-holder-proxy.html │ │ ├── contributing.html │ │ ├── copyright.html │ │ ├── credits.html │ │ ├── css │ │ │ └── styles.css │ │ ├── download.html │ │ ├── favicon.ico │ │ ├── ghost-object.html │ │ ├── img │ │ │ ├── block.png │ │ │ └── enf.png │ │ ├── index.html │ │ ├── null-object.html │ │ ├── production.html │ │ ├── remote-object.html │ │ └── virtual-proxy.html │ │ ├── index.html │ │ ├── phpdox.xml.dist │ │ ├── phpmd.xml.dist │ │ ├── phpunit.xml.dist │ │ ├── proxy-manager.png │ │ ├── proxy-manager.svg │ │ ├── src │ │ └── ProxyManager │ │ │ ├── Autoloader │ │ │ ├── Autoloader.php │ │ │ └── AutoloaderInterface.php │ │ │ ├── Configuration.php │ │ │ ├── Exception │ │ │ ├── DisabledMethodException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidProxiedClassException.php │ │ │ ├── InvalidProxyDirectoryException.php │ │ │ └── UnsupportedProxiedClassException.php │ │ │ ├── Factory │ │ │ ├── AbstractBaseFactory.php │ │ │ ├── AbstractLazyFactory.php │ │ │ ├── AccessInterceptorScopeLocalizerFactory.php │ │ │ ├── AccessInterceptorValueHolderFactory.php │ │ │ ├── LazyLoadingGhostFactory.php │ │ │ ├── LazyLoadingValueHolderFactory.php │ │ │ ├── NullObjectFactory.php │ │ │ ├── RemoteObject │ │ │ │ ├── Adapter │ │ │ │ │ ├── BaseAdapter.php │ │ │ │ │ ├── JsonRpc.php │ │ │ │ │ ├── Soap.php │ │ │ │ │ └── XmlRpc.php │ │ │ │ └── AdapterInterface.php │ │ │ └── RemoteObjectFactory.php │ │ │ ├── FileLocator │ │ │ ├── FileLocator.php │ │ │ └── FileLocatorInterface.php │ │ │ ├── Generator │ │ │ ├── ClassGenerator.php │ │ │ ├── MagicMethodGenerator.php │ │ │ ├── MethodGenerator.php │ │ │ ├── ParameterGenerator.php │ │ │ └── Util │ │ │ │ ├── ClassGeneratorUtils.php │ │ │ │ └── UniqueIdentifierGenerator.php │ │ │ ├── GeneratorStrategy │ │ │ ├── BaseGeneratorStrategy.php │ │ │ ├── EvaluatingGeneratorStrategy.php │ │ │ ├── FileWriterGeneratorStrategy.php │ │ │ └── GeneratorStrategyInterface.php │ │ │ ├── Inflector │ │ │ ├── ClassNameInflector.php │ │ │ ├── ClassNameInflectorInterface.php │ │ │ └── Util │ │ │ │ ├── ParameterEncoder.php │ │ │ │ └── ParameterHasher.php │ │ │ ├── Proxy │ │ │ ├── AccessInterceptorInterface.php │ │ │ ├── Exception │ │ │ │ └── RemoteObjectException.php │ │ │ ├── FallbackValueHolderInterface.php │ │ │ ├── GhostObjectInterface.php │ │ │ ├── LazyLoadingInterface.php │ │ │ ├── NullObjectInterface.php │ │ │ ├── ProxyInterface.php │ │ │ ├── RemoteObjectInterface.php │ │ │ ├── SmartReferenceInterface.php │ │ │ ├── ValueHolderInterface.php │ │ │ └── VirtualProxyInterface.php │ │ │ ├── ProxyGenerator │ │ │ ├── AccessInterceptor │ │ │ │ ├── MethodGenerator │ │ │ │ │ ├── MagicWakeup.php │ │ │ │ │ ├── SetMethodPrefixInterceptor.php │ │ │ │ │ └── SetMethodSuffixInterceptor.php │ │ │ │ └── PropertyGenerator │ │ │ │ │ ├── MethodPrefixInterceptors.php │ │ │ │ │ └── MethodSuffixInterceptors.php │ │ │ ├── AccessInterceptorScopeLocalizer │ │ │ │ └── MethodGenerator │ │ │ │ │ ├── Constructor.php │ │ │ │ │ ├── InterceptedMethod.php │ │ │ │ │ ├── MagicClone.php │ │ │ │ │ ├── MagicGet.php │ │ │ │ │ ├── MagicIsset.php │ │ │ │ │ ├── MagicSet.php │ │ │ │ │ ├── MagicSleep.php │ │ │ │ │ ├── MagicUnset.php │ │ │ │ │ └── Util │ │ │ │ │ └── InterceptorGenerator.php │ │ │ ├── AccessInterceptorScopeLocalizerGenerator.php │ │ │ ├── AccessInterceptorValueHolder │ │ │ │ └── MethodGenerator │ │ │ │ │ ├── Constructor.php │ │ │ │ │ ├── InterceptedMethod.php │ │ │ │ │ ├── MagicClone.php │ │ │ │ │ ├── MagicGet.php │ │ │ │ │ ├── MagicIsset.php │ │ │ │ │ ├── MagicSet.php │ │ │ │ │ ├── MagicUnset.php │ │ │ │ │ └── Util │ │ │ │ │ └── InterceptorGenerator.php │ │ │ ├── AccessInterceptorValueHolderGenerator.php │ │ │ ├── Assertion │ │ │ │ └── CanProxyAssertion.php │ │ │ ├── LazyLoading │ │ │ │ └── MethodGenerator │ │ │ │ │ └── Constructor.php │ │ │ ├── LazyLoadingGhost │ │ │ │ ├── MethodGenerator │ │ │ │ │ ├── CallInitializer.php │ │ │ │ │ ├── GetProxyInitializer.php │ │ │ │ │ ├── InitializeProxy.php │ │ │ │ │ ├── IsProxyInitialized.php │ │ │ │ │ ├── LazyLoadingMethodInterceptor.php │ │ │ │ │ ├── MagicClone.php │ │ │ │ │ ├── MagicGet.php │ │ │ │ │ ├── MagicIsset.php │ │ │ │ │ ├── MagicSet.php │ │ │ │ │ ├── MagicSleep.php │ │ │ │ │ ├── MagicUnset.php │ │ │ │ │ └── SetProxyInitializer.php │ │ │ │ └── PropertyGenerator │ │ │ │ │ ├── InitializationTracker.php │ │ │ │ │ └── InitializerProperty.php │ │ │ ├── LazyLoadingGhostGenerator.php │ │ │ ├── LazyLoadingValueHolder │ │ │ │ ├── MethodGenerator │ │ │ │ │ ├── GetProxyInitializer.php │ │ │ │ │ ├── InitializeProxy.php │ │ │ │ │ ├── IsProxyInitialized.php │ │ │ │ │ ├── LazyLoadingMethodInterceptor.php │ │ │ │ │ ├── MagicClone.php │ │ │ │ │ ├── MagicGet.php │ │ │ │ │ ├── MagicIsset.php │ │ │ │ │ ├── MagicSet.php │ │ │ │ │ ├── MagicSleep.php │ │ │ │ │ ├── MagicUnset.php │ │ │ │ │ └── SetProxyInitializer.php │ │ │ │ └── PropertyGenerator │ │ │ │ │ ├── InitializerProperty.php │ │ │ │ │ └── ValueHolderProperty.php │ │ │ ├── LazyLoadingValueHolderGenerator.php │ │ │ ├── NullObject │ │ │ │ └── MethodGenerator │ │ │ │ │ ├── Constructor.php │ │ │ │ │ └── NullObjectMethodInterceptor.php │ │ │ ├── NullObjectGenerator.php │ │ │ ├── PropertyGenerator │ │ │ │ ├── PublicPropertiesDefaults.php │ │ │ │ └── PublicPropertiesMap.php │ │ │ ├── ProxyGeneratorInterface.php │ │ │ ├── RemoteObject │ │ │ │ ├── MethodGenerator │ │ │ │ │ ├── Constructor.php │ │ │ │ │ ├── MagicGet.php │ │ │ │ │ ├── MagicIsset.php │ │ │ │ │ ├── MagicSet.php │ │ │ │ │ ├── MagicUnset.php │ │ │ │ │ └── RemoteObjectMethod.php │ │ │ │ └── PropertyGenerator │ │ │ │ │ └── AdapterProperty.php │ │ │ ├── RemoteObjectGenerator.php │ │ │ ├── Util │ │ │ │ ├── ProxiedMethodsFilter.php │ │ │ │ └── PublicScopeSimulator.php │ │ │ └── ValueHolder │ │ │ │ └── MethodGenerator │ │ │ │ ├── GetWrappedValueHolderValue.php │ │ │ │ └── MagicSleep.php │ │ │ ├── Signature │ │ │ ├── ClassSignatureGenerator.php │ │ │ ├── ClassSignatureGeneratorInterface.php │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidSignatureException.php │ │ │ │ └── MissingSignatureException.php │ │ │ ├── SignatureChecker.php │ │ │ ├── SignatureCheckerInterface.php │ │ │ ├── SignatureGenerator.php │ │ │ └── SignatureGeneratorInterface.php │ │ │ └── Version.php │ │ └── tests │ │ ├── ProxyManagerTest │ │ ├── Autoloader │ │ │ └── AutoloaderTest.php │ │ ├── ConfigurationTest.php │ │ ├── Exception │ │ │ ├── DisabledMethodExceptionTest.php │ │ │ ├── InvalidProxiedClassExceptionTest.php │ │ │ ├── InvalidProxyDirectoryExceptionTest.php │ │ │ └── UnsupportedProxiedClassExceptionTest.php │ │ ├── Factory │ │ │ ├── AbstractBaseFactoryTest.php │ │ │ ├── AccessInterceptorScopeLocalizerFactoryTest.php │ │ │ ├── AccessInterceptorValueHolderFactoryTest.php │ │ │ ├── LazyLoadingGhostFactoryTest.php │ │ │ ├── LazyLoadingValueHolderFactoryTest.php │ │ │ ├── NullObjectFactoryTest.php │ │ │ ├── RemoteObject │ │ │ │ └── Adapter │ │ │ │ │ ├── BaseAdapterTest.php │ │ │ │ │ ├── JsonRpcTest.php │ │ │ │ │ ├── SoapTest.php │ │ │ │ │ └── XmlRpcTest.php │ │ │ └── RemoteObjectFactoryTest.php │ │ ├── FileLocator │ │ │ └── FileLocatorTest.php │ │ ├── Functional │ │ │ ├── AccessInterceptorScopeLocalizerFunctionalTest.php │ │ │ ├── AccessInterceptorValueHolderFunctionalTest.php │ │ │ ├── BaseLazyLoadingPerformanceTest.php │ │ │ ├── BasePerformanceTest.php │ │ │ ├── FatalPreventionFunctionalTest.php │ │ │ ├── LazyLoadingGhostFunctionalTest.php │ │ │ ├── LazyLoadingGhostPerformanceTest.php │ │ │ ├── LazyLoadingValueHolderFunctionalTest.php │ │ │ ├── LazyLoadingValueHolderPerformanceTest.php │ │ │ ├── MultipleProxyGenerationTest.php │ │ │ ├── NullObjectFunctionalTest.php │ │ │ └── RemoteObjectFunctionalTest.php │ │ ├── Generator │ │ │ ├── ClassGeneratorTest.php │ │ │ ├── MagicMethodGeneratorTest.php │ │ │ ├── MethodGeneratorTest.php │ │ │ ├── ParameterGeneratorTest.php │ │ │ └── Util │ │ │ │ ├── ClassGeneratorUtilsTest.php │ │ │ │ └── UniqueIdentifierGeneratorTest.php │ │ ├── GeneratorStrategy │ │ │ ├── BaseGeneratorStrategyTest.php │ │ │ ├── EvaluatingGeneratorStrategyTest.php │ │ │ └── FileWriterGeneratorStrategyTest.php │ │ ├── Inflector │ │ │ ├── ClassNameInflectorTest.php │ │ │ └── Util │ │ │ │ ├── ParameterEncoderTest.php │ │ │ │ └── ParameterHasherTest.php │ │ ├── ProxyGenerator │ │ │ ├── AbstractProxyGeneratorTest.php │ │ │ ├── AccessInterceptor │ │ │ │ ├── MethodGenerator │ │ │ │ │ ├── MagicWakeupTest.php │ │ │ │ │ ├── SetMethodPrefixInterceptorTest.php │ │ │ │ │ └── SetMethodSuffixInterceptorTest.php │ │ │ │ └── PropertyGenerator │ │ │ │ │ ├── MethodPrefixInterceptorsTest.php │ │ │ │ │ └── MethodSuffixInterceptorsTest.php │ │ │ ├── AccessInterceptorScopeLocalizer │ │ │ │ └── MethodGenerator │ │ │ │ │ ├── ConstructorTest.php │ │ │ │ │ ├── InterceptedMethodTest.php │ │ │ │ │ ├── MagicCloneTest.php │ │ │ │ │ ├── MagicGetTest.php │ │ │ │ │ ├── MagicIssetTest.php │ │ │ │ │ ├── MagicSetTest.php │ │ │ │ │ ├── MagicSleepTest.php │ │ │ │ │ ├── MagicUnsetTest.php │ │ │ │ │ └── Util │ │ │ │ │ └── InterceptorGeneratorTest.php │ │ │ ├── AccessInterceptorScopeLocalizerTest.php │ │ │ ├── AccessInterceptorValueHolder │ │ │ │ ├── LazyLoading │ │ │ │ │ └── MethodGenerator │ │ │ │ │ │ └── ConstructorTest.php │ │ │ │ └── MethodGenerator │ │ │ │ │ ├── ConstructorTest.php │ │ │ │ │ ├── InterceptedMethodTest.php │ │ │ │ │ ├── MagicCloneTest.php │ │ │ │ │ ├── MagicGetTest.php │ │ │ │ │ ├── MagicIssetTest.php │ │ │ │ │ ├── MagicSetTest.php │ │ │ │ │ ├── MagicUnsetTest.php │ │ │ │ │ └── Util │ │ │ │ │ └── InterceptorGeneratorTest.php │ │ │ ├── AccessInterceptorValueHolderTest.php │ │ │ ├── Assertion │ │ │ │ └── CanProxyAssertionTest.php │ │ │ ├── LazyLoadingGhost │ │ │ │ ├── MethodGenerator │ │ │ │ │ ├── CallInitializerTest.php │ │ │ │ │ ├── GetProxyInitializerTest.php │ │ │ │ │ ├── InitializeProxyTest.php │ │ │ │ │ ├── IsProxyInitializedTest.php │ │ │ │ │ ├── LazyLoadingMethodInterceptorTest.php │ │ │ │ │ ├── MagicCloneTest.php │ │ │ │ │ ├── MagicGetTest.php │ │ │ │ │ ├── MagicIssetTest.php │ │ │ │ │ ├── MagicSetTest.php │ │ │ │ │ ├── MagicSleepTest.php │ │ │ │ │ ├── MagicUnsetTest.php │ │ │ │ │ └── SetProxyInitializerTest.php │ │ │ │ └── PropertyGenerator │ │ │ │ │ ├── InitializationTrackerTest.php │ │ │ │ │ └── InitializerPropertyTest.php │ │ │ ├── LazyLoadingGhostGeneratorTest.php │ │ │ ├── LazyLoadingValueHolder │ │ │ │ ├── MethodGenerator │ │ │ │ │ ├── GetProxyInitializerTest.php │ │ │ │ │ ├── InitializeProxyTest.php │ │ │ │ │ ├── IsProxyInitializedTest.php │ │ │ │ │ ├── LazyLoadingMethodInterceptorTest.php │ │ │ │ │ ├── MagicCloneTest.php │ │ │ │ │ ├── MagicGetTest.php │ │ │ │ │ ├── MagicIssetTest.php │ │ │ │ │ ├── MagicSetTest.php │ │ │ │ │ ├── MagicSleepTest.php │ │ │ │ │ ├── MagicUnsetTest.php │ │ │ │ │ └── SetProxyInitializerTest.php │ │ │ │ └── PropertyGenerator │ │ │ │ │ ├── InitializerPropertyTest.php │ │ │ │ │ └── ValueHolderPropertyTest.php │ │ │ ├── LazyLoadingValueHolderGeneratorTest.php │ │ │ ├── NullObject │ │ │ │ └── MethodGenerator │ │ │ │ │ ├── ConstructorTest.php │ │ │ │ │ └── NullObjectMethodInterceptorTest.php │ │ │ ├── NullObjectGeneratorTest.php │ │ │ ├── PropertyGenerator │ │ │ │ ├── AbstractUniquePropertyNameTest.php │ │ │ │ ├── PublicPropertiesDefaultsTest.php │ │ │ │ └── PublicPropertiesMapTest.php │ │ │ ├── RemoteObject │ │ │ │ ├── MethodGenerator │ │ │ │ │ ├── ConstructorTest.php │ │ │ │ │ ├── MagicGetTest.php │ │ │ │ │ ├── MagicIssetTest.php │ │ │ │ │ ├── MagicSetTest.php │ │ │ │ │ ├── MagicUnsetTest.php │ │ │ │ │ └── RemoteObjectMethodTest.php │ │ │ │ └── PropertyGenerator │ │ │ │ │ └── AdapterPropertyTest.php │ │ │ ├── RemoteObjectGeneratorTest.php │ │ │ ├── Util │ │ │ │ ├── ProxiedMethodsFilterTest.php │ │ │ │ └── PublicScopeSimulatorTest.php │ │ │ └── ValueHolder │ │ │ │ └── MethodGenerator │ │ │ │ ├── GetWrappedValueHolderValueTest.php │ │ │ │ └── MagicSleepTest.php │ │ ├── Signature │ │ │ ├── ClassSignatureGeneratorTest.php │ │ │ ├── Exception │ │ │ │ ├── InvalidSignatureExceptionTest.php │ │ │ │ └── MissingSignatureExceptionTest.php │ │ │ ├── SignatureCheckerTest.php │ │ │ └── SignatureGeneratorTest.php │ │ └── VersionTest.php │ │ ├── ProxyManagerTestAsset │ │ ├── AccessInterceptorValueHolderMock.php │ │ ├── BaseClass.php │ │ ├── BaseInterface.php │ │ ├── CallableTypeHintClass.php │ │ ├── ClassWithAbstractProtectedMethod.php │ │ ├── ClassWithByRefMagicMethods.php │ │ ├── ClassWithFinalMagicMethods.php │ │ ├── ClassWithFinalMethods.php │ │ ├── ClassWithMagicMethods.php │ │ ├── ClassWithMethodWithDefaultParameters.php │ │ ├── ClassWithMixedProperties.php │ │ ├── ClassWithPrivateProperties.php │ │ ├── ClassWithProtectedProperties.php │ │ ├── ClassWithPublicArrayProperty.php │ │ ├── ClassWithPublicProperties.php │ │ ├── ClassWithSelfHint.php │ │ ├── EmptyClass.php │ │ ├── FinalClass.php │ │ ├── HydratedObject.php │ │ ├── LazyLoadingMock.php │ │ ├── NullObjectMock.php │ │ ├── ProxyGenerator │ │ │ └── LazyLoading │ │ │ │ └── MethodGenerator │ │ │ │ └── ClassWithTwoPublicProperties.php │ │ └── RemoteProxy │ │ │ ├── BazServiceInterface.php │ │ │ ├── Foo.php │ │ │ └── FooServiceInterface.php │ │ └── language-feature-scripts │ │ ├── README.md │ │ ├── access-interceptor-denies-private-property-isset.phpt │ │ ├── access-interceptor-denies-private-property-read.phpt │ │ ├── access-interceptor-denies-private-property-unset.phpt │ │ ├── access-interceptor-denies-private-property-write.phpt │ │ ├── access-interceptor-denies-protected-property-isset.phpt │ │ ├── access-interceptor-denies-protected-property-read.phpt │ │ ├── access-interceptor-denies-protected-property-unset.phpt │ │ ├── access-interceptor-denies-protected-property-write.phpt │ │ ├── access-interceptor-scope-localizer-denies-private-property-isset.phpt │ │ ├── access-interceptor-scope-localizer-denies-private-property-read.phpt │ │ ├── access-interceptor-scope-localizer-denies-private-property-unset.phpt │ │ ├── access-interceptor-scope-localizer-denies-private-property-write.phpt │ │ ├── access-interceptor-scope-localizer-denies-protected-property-isset.phpt │ │ ├── access-interceptor-scope-localizer-denies-protected-property-read.phpt │ │ ├── access-interceptor-scope-localizer-denies-protected-property-unset.phpt │ │ ├── access-interceptor-scope-localizer-denies-protected-property-write.phpt │ │ ├── access-interceptor-with-cache.phpt │ │ ├── cache │ │ └── README.md │ │ ├── init.php │ │ ├── lazy-loading-ghost-allows-inexisting-magic-property-read.phpt │ │ ├── lazy-loading-ghost-allows-inexisting-property-write.phpt │ │ ├── lazy-loading-ghost-denies-inexisting-property-read.phpt │ │ ├── lazy-loading-ghost-denies-private-property-isset.phpt │ │ ├── lazy-loading-ghost-denies-private-property-read.phpt │ │ ├── lazy-loading-ghost-denies-private-property-unset.phpt │ │ ├── lazy-loading-ghost-denies-private-property-write.phpt │ │ ├── lazy-loading-ghost-denies-protected-property-isset.phpt │ │ ├── lazy-loading-ghost-denies-protected-property-read.phpt │ │ ├── lazy-loading-ghost-denies-protected-property-unset.phpt │ │ ├── lazy-loading-ghost-denies-protected-property-write.phpt │ │ ├── lazy-loading-ghost-with-cache.phpt │ │ ├── lazy-loading-value-holder-denies-private-property-isset.phpt │ │ ├── lazy-loading-value-holder-denies-private-property-read.phpt │ │ ├── lazy-loading-value-holder-denies-private-property-unset.phpt │ │ ├── lazy-loading-value-holder-denies-private-property-write.phpt │ │ ├── lazy-loading-value-holder-denies-protected-property-isset.phpt │ │ ├── lazy-loading-value-holder-denies-protected-property-read.phpt │ │ ├── lazy-loading-value-holder-denies-protected-property-unset.phpt │ │ ├── lazy-loading-value-holder-denies-protected-property-write.phpt │ │ ├── lazy-loading-value-holder-internal-php-classes.phpt │ │ ├── lazy-loading-value-holder-with-cache.phpt │ │ ├── null-object-public-function-empty.phpt │ │ ├── null-object-public-property-empty.phpt │ │ └── remote-object-json-adapter-denies-unknow-method.phpt ├── psr │ └── log │ │ ├── LICENSE │ │ ├── Psr │ │ └── Log │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ ├── NullLogger.php │ │ │ └── Test │ │ │ └── LoggerInterfaceTest.php │ │ ├── README.md │ │ └── composer.json ├── romaricdrigon │ └── metayaml │ │ ├── .atoum.php │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin │ │ └── test │ │ ├── composer.json │ │ ├── data │ │ └── MetaSchema.json │ │ ├── src │ │ └── RomaricDrigon │ │ │ └── MetaYaml │ │ │ ├── Exception │ │ │ └── NodeValidatorException.php │ │ │ ├── Loader │ │ │ ├── JsonLoader.php │ │ │ ├── Loader.php │ │ │ ├── LoaderInterface.php │ │ │ ├── XmlLoader.php │ │ │ └── YamlLoader.php │ │ │ ├── MetaYaml.php │ │ │ ├── NodeValidator │ │ │ ├── ArrayNodeValidator.php │ │ │ ├── BooleanNodeValidator.php │ │ │ ├── ChoiceNodeValidator.php │ │ │ ├── EnumNodeValidator.php │ │ │ ├── NodeValidator.php │ │ │ ├── NodeValidatorFactory.php │ │ │ ├── NodeValidatorInterface.php │ │ │ ├── NumberNodeValidator.php │ │ │ ├── PartialNodeValidator.php │ │ │ ├── PatternNodeValidator.php │ │ │ ├── PrototypeNodeValidator.php │ │ │ └── TextNodeValidator.php │ │ │ ├── SchemaValidator.php │ │ │ ├── XsdGenerator.php │ │ │ └── XsdNodeGenerator │ │ │ ├── XsdArrayNodeGenerator.php │ │ │ ├── XsdBooleanNodeGenerator.php │ │ │ ├── XsdEnumNodeGenerator.php │ │ │ ├── XsdNodeGenerator.php │ │ │ ├── XsdNodeGeneratorFactory.php │ │ │ ├── XsdNodeGeneratorInterface.php │ │ │ ├── XsdNumberNodeGenerator.php │ │ │ ├── XsdPartialNodeGenerator.php │ │ │ ├── XsdPatternNodeGenerator.php │ │ │ ├── XsdPrototypeNodeGenerator.php │ │ │ └── XsdTextNodeGenerator.php │ │ └── test │ │ ├── bootstrap.php │ │ ├── data │ │ ├── TestAdvanced │ │ │ ├── Schema.yml │ │ │ └── TestBase.yml │ │ ├── TestAttributes │ │ │ ├── Schema.yml │ │ │ └── TestBase.yml │ │ ├── TestBasic │ │ │ ├── Schema.yml │ │ │ ├── TestBase.json │ │ │ ├── TestBase.yml │ │ │ └── TestRequired.yml │ │ ├── TestRoot │ │ │ ├── Schema.yml │ │ │ └── TestBase.yml │ │ ├── TestTypes │ │ │ ├── Schema.yml │ │ │ └── TestBase.yml │ │ └── TestXml │ │ │ ├── Schema.xml │ │ │ └── TestBase.xml │ │ └── unit │ │ └── RomaricDrigon │ │ └── MetaYaml │ │ ├── Loader │ │ ├── JsonLoader.php │ │ ├── Loader.php │ │ ├── XmlLoader.php │ │ └── YamlLoader.php │ │ ├── MetaYaml.php │ │ ├── NodeValidator │ │ ├── ArrayNodeValidator.php │ │ ├── BooleanNodeValidator.php │ │ ├── ChoiceNodeValidator.php │ │ ├── EnumNodeValidator.php │ │ ├── NodeValidator.php │ │ ├── NodeValidatorFactory.php │ │ ├── NumberNodeValidator.php │ │ ├── PartialNodeValidator.php │ │ ├── PatternNodeValidator.php │ │ ├── PrototypeNodeValidator.php │ │ └── TextNodeValidator.php │ │ ├── SchemaValidator.php │ │ ├── XsdGenerator.php │ │ └── XsdNodeGenerator │ │ ├── XsdArrayNodeGenerator.php │ │ ├── XsdBooleanNodeGenerator.php │ │ ├── XsdEnumNodeGenerator.php │ │ ├── XsdNodeGenerator.php │ │ ├── XsdNodeGeneratorFactory.php │ │ ├── XsdNumberNodeGenerator.php │ │ ├── XsdPartialNodeGenerator.php │ │ ├── XsdPatternNodeGenerator.php │ │ ├── XsdPrototypeNodeGenerator.php │ │ └── XsdTextNodeGenerator.php ├── sphring │ └── sphring │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Arthurh │ │ └── Sphring │ │ ├── ComposerManager │ │ └── ComposerManager.php │ │ ├── Enum │ │ ├── SphringComposerEnum.php │ │ ├── SphringEventEnum.php │ │ └── SphringYamlarhConstantEnum.php │ │ ├── EventDispatcher │ │ ├── AbstractSphringEvent.php │ │ ├── AnnotationsDispatcher.php │ │ ├── EventAnnotation.php │ │ ├── EventBeanProperty.php │ │ ├── EventSphring.php │ │ ├── Listener │ │ │ ├── AbstractSphringEventListener.php │ │ │ ├── AnnotationClassInstantiateListener.php │ │ │ ├── AnnotationClassListener.php │ │ │ ├── AnnotationMethodCallAfterListener.php │ │ │ ├── AnnotationMethodCallBeforeListener.php │ │ │ ├── AnnotationMethodListener.php │ │ │ ├── BeanPropertyListener.php │ │ │ └── SphringGlobalListener.php │ │ └── SphringEventDispatcher.php │ │ ├── Exception │ │ ├── BeanException.php │ │ ├── BeanPropertyException.php │ │ ├── ExtenderException.php │ │ ├── SphringAnnotationException.php │ │ ├── SphringEventListenerException.php │ │ └── SphringException.php │ │ ├── Extender │ │ ├── ExtendNode │ │ │ ├── AbstractExtendNode.php │ │ │ ├── ExtendNodeAnnotationClass.php │ │ │ ├── ExtendNodeAnnotationClassInstantiate.php │ │ │ ├── ExtendNodeAnnotationMethod.php │ │ │ ├── ExtendNodeAnnotationMethodCallAfter.php │ │ │ ├── ExtendNodeAnnotationMethodCallBefore.php │ │ │ ├── ExtendNodeBeanProperty.php │ │ │ ├── ExtendNodeBeanType.php │ │ │ └── ExtendNodeSphringGlobal.php │ │ ├── Extender.php │ │ └── Node.php │ │ ├── Logger │ │ └── LoggerSphring.php │ │ ├── Model │ │ ├── Annotation │ │ │ ├── AbstractAnnotation.php │ │ │ ├── AbstractMethodOnSphringEventAnnotation.php │ │ │ ├── AfterLoadMethodOnSphringEventAnnotation.php │ │ │ ├── AopAnnotation │ │ │ │ ├── AbstractAopAnnotation.php │ │ │ │ ├── AfterCallAnnotation.php │ │ │ │ ├── BeforeCallAnnotation.php │ │ │ │ └── CallAnnotation.php │ │ │ ├── AutoWireAnnotation.php │ │ │ ├── BeforeLoadMethodOnSphringEventAnnotation.php │ │ │ ├── BeforeStartMethodOnSphringEventAnnotation.php │ │ │ ├── LoadContextAnnotation.php │ │ │ ├── MethodInitAnnotation.php │ │ │ ├── RequiredAnnotation.php │ │ │ └── RootProjectAnnotation.php │ │ ├── Bean │ │ │ ├── AbstractBean.php │ │ │ ├── Bean.php │ │ │ ├── BeanAbstract.php │ │ │ └── FactoryBean.php │ │ ├── BeanProperty │ │ │ ├── AbstractBeanProperty.php │ │ │ ├── AbstractBeanPropertyFileLoader.php │ │ │ ├── BeanPropertyFile.php │ │ │ ├── BeanPropertyFolder.php │ │ │ ├── BeanPropertyIniFile.php │ │ │ ├── BeanPropertyJson.php │ │ │ ├── BeanPropertyRef.php │ │ │ ├── BeanPropertyStream.php │ │ │ ├── BeanPropertyValue.php │ │ │ ├── BeanPropertyXml.php │ │ │ └── BeanPropertyYml.php │ │ └── SphringGlobal.php │ │ ├── ProxyGenerator │ │ └── ProxyGenerator.php │ │ ├── Runner │ │ └── SphringRunner.php │ │ ├── Sphring.php │ │ ├── SphringBoot │ │ ├── SphringBoot.php │ │ ├── SphringBootAnnotation.php │ │ ├── SphringBootBeanProperty.php │ │ └── SphringBootYamlarhEnv.php │ │ ├── Validation │ │ ├── Bean │ │ │ ├── bean.yml │ │ │ └── beanAbstract.yml │ │ └── Validator.php │ │ └── YamlarhNode │ │ └── PopertyFileYamlarhNode.php ├── symfony │ ├── event-dispatcher │ │ └── Symfony │ │ │ └── Component │ │ │ └── EventDispatcher │ │ │ ├── CHANGELOG.md │ │ │ ├── ContainerAwareEventDispatcher.php │ │ │ ├── Debug │ │ │ ├── TraceableEventDispatcher.php │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ └── WrappedListener.php │ │ │ ├── DependencyInjection │ │ │ └── RegisterListenersPass.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── EventSubscriberInterface.php │ │ │ ├── GenericEvent.php │ │ │ ├── ImmutableEventDispatcher.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ ├── AbstractEventDispatcherTest.php │ │ │ ├── ContainerAwareEventDispatcherTest.php │ │ │ ├── Debug │ │ │ │ └── TraceableEventDispatcherTest.php │ │ │ ├── DependencyInjection │ │ │ │ └── RegisterListenersPassTest.php │ │ │ ├── EventDispatcherTest.php │ │ │ ├── EventTest.php │ │ │ ├── GenericEventTest.php │ │ │ └── ImmutableEventDispatcherTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ ├── expression-language │ │ └── Symfony │ │ │ └── Component │ │ │ └── ExpressionLanguage │ │ │ ├── CHANGELOG.md │ │ │ ├── Compiler.php │ │ │ ├── Expression.php │ │ │ ├── ExpressionFunction.php │ │ │ ├── ExpressionFunctionProviderInterface.php │ │ │ ├── ExpressionLanguage.php │ │ │ ├── LICENSE │ │ │ ├── Lexer.php │ │ │ ├── Node │ │ │ ├── ArgumentsNode.php │ │ │ ├── ArrayNode.php │ │ │ ├── BinaryNode.php │ │ │ ├── ConditionalNode.php │ │ │ ├── ConstantNode.php │ │ │ ├── FunctionNode.php │ │ │ ├── GetAttrNode.php │ │ │ ├── NameNode.php │ │ │ ├── Node.php │ │ │ └── UnaryNode.php │ │ │ ├── ParsedExpression.php │ │ │ ├── Parser.php │ │ │ ├── ParserCache │ │ │ ├── ArrayParserCache.php │ │ │ └── ParserCacheInterface.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ └── bin │ │ │ │ └── generate_operator_regex.php │ │ │ ├── SerializedParsedExpression.php │ │ │ ├── SyntaxError.php │ │ │ ├── Tests │ │ │ ├── ExpressionLanguageTest.php │ │ │ ├── ExpressionTest.php │ │ │ ├── Fixtures │ │ │ │ └── TestProvider.php │ │ │ ├── LexerTest.php │ │ │ ├── Node │ │ │ │ ├── AbstractNodeTest.php │ │ │ │ ├── ArgumentsNodeTest.php │ │ │ │ ├── ArrayNodeTest.php │ │ │ │ ├── BinaryNodeTest.php │ │ │ │ ├── ConditionalNodeTest.php │ │ │ │ ├── ConstantNodeTest.php │ │ │ │ ├── FunctionNodeTest.php │ │ │ │ ├── GetAttrNodeTest.php │ │ │ │ ├── NameNodeTest.php │ │ │ │ ├── NodeTest.php │ │ │ │ └── UnaryNodeTest.php │ │ │ ├── ParsedExpressionTest.php │ │ │ └── ParserTest.php │ │ │ ├── Token.php │ │ │ ├── TokenStream.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ └── yaml │ │ └── Symfony │ │ └── Component │ │ └── Yaml │ │ ├── CHANGELOG.md │ │ ├── Dumper.php │ │ ├── Escaper.php │ │ ├── Exception │ │ ├── DumpException.php │ │ ├── ExceptionInterface.php │ │ ├── ParseException.php │ │ └── RuntimeException.php │ │ ├── Inline.php │ │ ├── LICENSE │ │ ├── Parser.php │ │ ├── README.md │ │ ├── Tests │ │ ├── DumperTest.php │ │ ├── Fixtures │ │ │ ├── YtsAnchorAlias.yml │ │ │ ├── YtsBasicTests.yml │ │ │ ├── YtsBlockMapping.yml │ │ │ ├── YtsDocumentSeparator.yml │ │ │ ├── YtsErrorTests.yml │ │ │ ├── YtsFlowCollections.yml │ │ │ ├── YtsFoldedScalars.yml │ │ │ ├── YtsNullsAndEmpties.yml │ │ │ ├── YtsSpecificationExamples.yml │ │ │ ├── YtsTypeTransfers.yml │ │ │ ├── embededPhp.yml │ │ │ ├── escapedCharacters.yml │ │ │ ├── index.yml │ │ │ ├── sfComments.yml │ │ │ ├── sfCompact.yml │ │ │ ├── sfMergeKey.yml │ │ │ ├── sfObjects.yml │ │ │ ├── sfQuotes.yml │ │ │ ├── sfTests.yml │ │ │ └── unindentedCollections.yml │ │ ├── InlineTest.php │ │ ├── ParseExceptionTest.php │ │ ├── ParserTest.php │ │ └── YamlTest.php │ │ ├── Unescaper.php │ │ ├── Yaml.php │ │ ├── composer.json │ │ └── phpunit.xml.dist ├── zendframework │ ├── zend-code │ │ └── Zend │ │ │ └── Code │ │ │ ├── Annotation │ │ │ ├── AnnotationCollection.php │ │ │ ├── AnnotationInterface.php │ │ │ ├── AnnotationManager.php │ │ │ └── Parser │ │ │ │ ├── DoctrineAnnotationParser.php │ │ │ │ ├── GenericAnnotationParser.php │ │ │ │ └── ParserInterface.php │ │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ │ ├── Generator │ │ │ ├── AbstractGenerator.php │ │ │ ├── AbstractMemberGenerator.php │ │ │ ├── BodyGenerator.php │ │ │ ├── ClassGenerator.php │ │ │ ├── DocBlock │ │ │ │ ├── Tag.php │ │ │ │ ├── Tag │ │ │ │ │ ├── AbstractTypeableTag.php │ │ │ │ │ ├── AuthorTag.php │ │ │ │ │ ├── GenericTag.php │ │ │ │ │ ├── LicenseTag.php │ │ │ │ │ ├── MethodTag.php │ │ │ │ │ ├── ParamTag.php │ │ │ │ │ ├── PropertyTag.php │ │ │ │ │ ├── ReturnTag.php │ │ │ │ │ ├── TagInterface.php │ │ │ │ │ └── ThrowsTag.php │ │ │ │ └── TagManager.php │ │ │ ├── DocBlockGenerator.php │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── FileGenerator.php │ │ │ ├── FileGeneratorRegistry.php │ │ │ ├── GeneratorInterface.php │ │ │ ├── MethodGenerator.php │ │ │ ├── ParameterGenerator.php │ │ │ ├── PropertyGenerator.php │ │ │ ├── PropertyValueGenerator.php │ │ │ └── ValueGenerator.php │ │ │ ├── Generic │ │ │ └── Prototype │ │ │ │ ├── PrototypeClassFactory.php │ │ │ │ ├── PrototypeGenericInterface.php │ │ │ │ └── PrototypeInterface.php │ │ │ ├── NameInformation.php │ │ │ ├── README.md │ │ │ ├── Reflection │ │ │ ├── ClassReflection.php │ │ │ ├── DocBlock │ │ │ │ ├── Tag │ │ │ │ │ ├── AuthorTag.php │ │ │ │ │ ├── GenericTag.php │ │ │ │ │ ├── LicenseTag.php │ │ │ │ │ ├── MethodTag.php │ │ │ │ │ ├── ParamTag.php │ │ │ │ │ ├── PhpDocTypedTagInterface.php │ │ │ │ │ ├── PropertyTag.php │ │ │ │ │ ├── ReturnTag.php │ │ │ │ │ ├── TagInterface.php │ │ │ │ │ └── ThrowsTag.php │ │ │ │ └── TagManager.php │ │ │ ├── DocBlockReflection.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── FileReflection.php │ │ │ ├── FunctionReflection.php │ │ │ ├── MethodReflection.php │ │ │ ├── ParameterReflection.php │ │ │ ├── PropertyReflection.php │ │ │ └── ReflectionInterface.php │ │ │ ├── Scanner │ │ │ ├── AggregateDirectoryScanner.php │ │ │ ├── AnnotationScanner.php │ │ │ ├── CachingFileScanner.php │ │ │ ├── ClassScanner.php │ │ │ ├── ConstantScanner.php │ │ │ ├── DerivedClassScanner.php │ │ │ ├── DirectoryScanner.php │ │ │ ├── DocBlockScanner.php │ │ │ ├── FileScanner.php │ │ │ ├── FunctionScanner.php │ │ │ ├── MethodScanner.php │ │ │ ├── ParameterScanner.php │ │ │ ├── PropertyScanner.php │ │ │ ├── ScannerInterface.php │ │ │ ├── TokenArrayScanner.php │ │ │ ├── Util.php │ │ │ └── ValueScanner.php │ │ │ └── composer.json │ ├── zend-eventmanager │ │ └── Zend │ │ │ └── EventManager │ │ │ ├── AbstractListenerAggregate.php │ │ │ ├── Event.php │ │ │ ├── EventInterface.php │ │ │ ├── EventManager.php │ │ │ ├── EventManagerAwareInterface.php │ │ │ ├── EventManagerAwareTrait.php │ │ │ ├── EventManagerInterface.php │ │ │ ├── EventsCapableInterface.php │ │ │ ├── Exception │ │ │ ├── DomainException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── InvalidCallbackException.php │ │ │ ├── Filter │ │ │ ├── FilterInterface.php │ │ │ └── FilterIterator.php │ │ │ ├── FilterChain.php │ │ │ ├── GlobalEventManager.php │ │ │ ├── ListenerAggregateInterface.php │ │ │ ├── ListenerAggregateTrait.php │ │ │ ├── ProvidesEvents.php │ │ │ ├── README.md │ │ │ ├── ResponseCollection.php │ │ │ ├── SharedEventAggregateAwareInterface.php │ │ │ ├── SharedEventManager.php │ │ │ ├── SharedEventManagerAwareInterface.php │ │ │ ├── SharedEventManagerInterface.php │ │ │ ├── SharedListenerAggregateInterface.php │ │ │ ├── StaticEventManager.php │ │ │ └── composer.json │ └── zend-stdlib │ │ └── Zend │ │ └── Stdlib │ │ ├── AbstractOptions.php │ │ ├── ArrayObject.php │ │ ├── ArraySerializableInterface.php │ │ ├── ArrayStack.php │ │ ├── ArrayUtils.php │ │ ├── CallbackHandler.php │ │ ├── DateTime.php │ │ ├── DispatchableInterface.php │ │ ├── ErrorHandler.php │ │ ├── Exception │ │ ├── BadMethodCallException.php │ │ ├── DomainException.php │ │ ├── ExceptionInterface.php │ │ ├── ExtensionNotLoadedException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidCallbackException.php │ │ ├── LogicException.php │ │ └── RuntimeException.php │ │ ├── Extractor │ │ └── ExtractionInterface.php │ │ ├── Glob.php │ │ ├── Guard │ │ ├── AllGuardsTrait.php │ │ ├── ArrayOrTraversableGuardTrait.php │ │ ├── EmptyGuardTrait.php │ │ ├── GuardUtils.php │ │ └── NullGuardTrait.php │ │ ├── Hydrator │ │ ├── AbstractHydrator.php │ │ ├── Aggregate │ │ │ ├── AggregateHydrator.php │ │ │ ├── ExtractEvent.php │ │ │ ├── HydrateEvent.php │ │ │ └── HydratorListener.php │ │ ├── ArraySerializable.php │ │ ├── ClassMethods.php │ │ ├── Filter │ │ │ ├── FilterComposite.php │ │ │ ├── FilterInterface.php │ │ │ ├── FilterProviderInterface.php │ │ │ ├── GetFilter.php │ │ │ ├── HasFilter.php │ │ │ ├── IsFilter.php │ │ │ ├── MethodMatchFilter.php │ │ │ ├── NumberOfParameterFilter.php │ │ │ └── OptionalParametersFilter.php │ │ ├── FilterEnabledInterface.php │ │ ├── HydrationInterface.php │ │ ├── HydratorAwareInterface.php │ │ ├── HydratorAwareTrait.php │ │ ├── HydratorInterface.php │ │ ├── HydratorOptionsInterface.php │ │ ├── HydratorPluginManager.php │ │ ├── NamingStrategy │ │ │ ├── NamingStrategyInterface.php │ │ │ └── UnderscoreNamingStrategy.php │ │ ├── NamingStrategyEnabledInterface.php │ │ ├── ObjectProperty.php │ │ ├── Reflection.php │ │ ├── Strategy │ │ │ ├── ClosureStrategy.php │ │ │ ├── DefaultStrategy.php │ │ │ ├── SerializableStrategy.php │ │ │ └── StrategyInterface.php │ │ └── StrategyEnabledInterface.php │ │ ├── InitializableInterface.php │ │ ├── JsonSerializable.php │ │ ├── JsonSerializable │ │ └── PhpLegacyCompatibility.php │ │ ├── Message.php │ │ ├── MessageInterface.php │ │ ├── ParameterObjectInterface.php │ │ ├── Parameters.php │ │ ├── ParametersInterface.php │ │ ├── PriorityList.php │ │ ├── PriorityQueue.php │ │ ├── README.md │ │ ├── Request.php │ │ ├── RequestInterface.php │ │ ├── Response.php │ │ ├── ResponseInterface.php │ │ ├── SplPriorityQueue.php │ │ ├── SplQueue.php │ │ ├── SplStack.php │ │ ├── StringUtils.php │ │ ├── StringWrapper │ │ ├── AbstractStringWrapper.php │ │ ├── Iconv.php │ │ ├── Intl.php │ │ ├── MbString.php │ │ ├── Native.php │ │ └── StringWrapperInterface.php │ │ ├── compatibility │ │ └── autoload.php │ │ └── composer.json ├── zeptech │ └── annotations │ │ ├── README.md │ │ ├── composer.json │ │ └── zpt │ │ └── anno │ │ ├── AnnotationFactory.php │ │ ├── AnnotationParser.php │ │ ├── Annotations.php │ │ └── ReflectorNotCommentedException.php └── zf1 │ ├── zend-config │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ └── library │ │ └── Zend │ │ ├── Config.php │ │ └── Config │ │ ├── Exception.php │ │ ├── Ini.php │ │ ├── Json.php │ │ ├── Writer.php │ │ ├── Writer │ │ ├── Array.php │ │ ├── FileAbstract.php │ │ ├── Ini.php │ │ ├── Json.php │ │ ├── Xml.php │ │ └── Yaml.php │ │ ├── Xml.php │ │ └── Yaml.php │ ├── zend-exception │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ └── library │ │ └── Zend │ │ └── Exception.php │ └── zend-xml │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ └── library │ └── Zend │ └── Xml │ ├── Exception.php │ └── Security.php ├── viewproperties.php ├── views.php └── xloadtree ├── xloadtree2.js └── xtree2.js /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/CREDITS -------------------------------------------------------------------------------- /HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/HISTORY -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2002, 2003, 2004, 2005 The phpPgAdmin Project 2 | 3 | This program is free software; you can redistribute it and/or modify 4 | it under the terms of the GNU General Public License as published by 5 | the Free Software Foundation; either version 2 of the License, or 6 | (at your option) any later version. 7 | This program is distributed in the hope that it will be useful, 8 | but WITHOUT ANY WARRANTY; without even the implied warranty of 9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 | GNU General Public License 11 | for more details. 12 | 13 | -------------------------------------------------------------------------------- /classes/ArrayRecordSet.php: -------------------------------------------------------------------------------- 1 | _array = $data; 17 | $this->_count = count($this->_array); 18 | $this->fields = reset($this->_array); 19 | if ($this->fields === false) $this->EOF = true; 20 | } 21 | 22 | function recordCount() { 23 | return $this->_count; 24 | } 25 | 26 | function moveNext() { 27 | $this->fields = next($this->_array); 28 | if ($this->fields === false) $this->EOF = true; 29 | } 30 | } 31 | 32 | ?> 33 | -------------------------------------------------------------------------------- /classes/database/Postgres90.php: -------------------------------------------------------------------------------- 1 | Postgres($conn); 21 | } 22 | 23 | // Help functions 24 | 25 | function getHelpPages() { 26 | include_once('./help/PostgresDoc90.php'); 27 | return $this->help_page; 28 | } 29 | 30 | // Capabilities 31 | 32 | } 33 | ?> 34 | -------------------------------------------------------------------------------- /classes/database/Postgres92.php: -------------------------------------------------------------------------------- 1 | Postgres($conn); 20 | } 21 | 22 | // Help functions 23 | 24 | function getHelpPages() { 25 | include_once('./help/PostgresDoc92.php'); 26 | return $this->help_page; 27 | } 28 | 29 | } 30 | ?> 31 | -------------------------------------------------------------------------------- /classes/database/Postgres93.php: -------------------------------------------------------------------------------- 1 | Postgres($conn); 20 | } 21 | 22 | // Help functions 23 | 24 | function getHelpPages() { 25 | include_once('./help/PostgresDoc93.php'); 26 | return $this->help_page; 27 | } 28 | 29 | } 30 | ?> 31 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phppgadmin/phppgadmin", 3 | "description": "phpPgAdmin is a web-based administration tool for PostgreSQL. It is perfect for PostgreSQL DBAs, newbies, and hosting services.", 4 | "type": "Application", 5 | "license": "GPL-2.0+", 6 | "require": { 7 | "php": "5.5.*", 8 | "ext-mbstring": "*", 9 | "ext-pgsql": "*", 10 | "ext-mcrypt": "*", 11 | "ext-pdo": "*", 12 | "ext-pdo_pgsql": "*", 13 | "cloudfoundry-community/cf-helper-php": "1.4.*", 14 | "monolog/monolog": "~1.13" 15 | }, 16 | "minimum-stability": "stable", 17 | "autoload": { 18 | } 19 | } 20 | 21 | -------------------------------------------------------------------------------- /help/PostgresDoc81.php: -------------------------------------------------------------------------------- 1 | help_base = sprintf($GLOBALS['conf']['help_base'], '8.1'); 12 | 13 | $this->help_page['pg.role'] = 'user-manag.html'; 14 | $this->help_page['pg.role.create'] = array('sql-createrole.html','user-manag.html#DATABASE-ROLES'); 15 | $this->help_page['pg.role.alter'] = array('sql-alterrole.html','role-attributes.html'); 16 | $this->help_page['pg.role.drop'] = array('sql-droprole.html','user-manag.html#DATABASE-ROLES'); 17 | 18 | ?> 19 | -------------------------------------------------------------------------------- /help/PostgresDoc82.php: -------------------------------------------------------------------------------- 1 | help_base = sprintf($GLOBALS['conf']['help_base'], '8.2'); 12 | 13 | ?> 14 | -------------------------------------------------------------------------------- /help/PostgresDoc84.php: -------------------------------------------------------------------------------- 1 | help_base = sprintf($GLOBALS['conf']['help_base'], '8.4'); 12 | 13 | ?> 14 | -------------------------------------------------------------------------------- /help/PostgresDoc90.php: -------------------------------------------------------------------------------- 1 | help_base = sprintf($GLOBALS['conf']['help_base'], '9.0'); 12 | 13 | ?> 14 | -------------------------------------------------------------------------------- /help/PostgresDoc91.php: -------------------------------------------------------------------------------- 1 | help_base = sprintf($GLOBALS['conf']['help_base'], '9.1'); 12 | 13 | ?> 14 | -------------------------------------------------------------------------------- /help/PostgresDoc92.php: -------------------------------------------------------------------------------- 1 | help_base = sprintf($GLOBALS['conf']['help_base'], '9.2'); 12 | 13 | ?> 14 | -------------------------------------------------------------------------------- /help/PostgresDoc93.php: -------------------------------------------------------------------------------- 1 | help_base = sprintf($GLOBALS['conf']['help_base'], '9.3'); 12 | 13 | ?> 14 | -------------------------------------------------------------------------------- /help/PostgresDoc94.php: -------------------------------------------------------------------------------- 1 | help_base = sprintf($GLOBALS['conf']['help_base'], '9.4'); 12 | 13 | ?> 14 | -------------------------------------------------------------------------------- /images/themes/bootstrap/Favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/bootstrap/Favicon.ico -------------------------------------------------------------------------------- /images/themes/bootstrap/Introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/bootstrap/Introduction.png -------------------------------------------------------------------------------- /images/themes/bootstrap/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/bootstrap/title.png -------------------------------------------------------------------------------- /images/themes/cappuccino/Lminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/cappuccino/Lminus.png -------------------------------------------------------------------------------- /images/themes/cappuccino/Lplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/cappuccino/Lplus.png -------------------------------------------------------------------------------- /images/themes/cappuccino/Tminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/cappuccino/Tminus.png -------------------------------------------------------------------------------- /images/themes/cappuccino/Tplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/cappuccino/Tplus.png -------------------------------------------------------------------------------- /images/themes/cappuccino/inputbckg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/cappuccino/inputbckg.png -------------------------------------------------------------------------------- /images/themes/cappuccino/openListe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/cappuccino/openListe.png -------------------------------------------------------------------------------- /images/themes/cappuccino/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/cappuccino/title.png -------------------------------------------------------------------------------- /images/themes/default/AddArguments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/AddArguments.png -------------------------------------------------------------------------------- /images/themes/default/Admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Admin.png -------------------------------------------------------------------------------- /images/themes/default/Aggregate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Aggregate.png -------------------------------------------------------------------------------- /images/themes/default/Aggregates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Aggregates.png -------------------------------------------------------------------------------- /images/themes/default/AllUsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/AllUsers.png -------------------------------------------------------------------------------- /images/themes/default/AvailableReplicationSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/AvailableReplicationSet.png -------------------------------------------------------------------------------- /images/themes/default/AvailableSubscription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/AvailableSubscription.png -------------------------------------------------------------------------------- /images/themes/default/Backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Backup.png -------------------------------------------------------------------------------- /images/themes/default/Cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Cast.png -------------------------------------------------------------------------------- /images/themes/default/Casts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Casts.png -------------------------------------------------------------------------------- /images/themes/default/CheckConstraint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/CheckConstraint.png -------------------------------------------------------------------------------- /images/themes/default/Cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Cluster.png -------------------------------------------------------------------------------- /images/themes/default/Column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Column.png -------------------------------------------------------------------------------- /images/themes/default/Columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Columns.png -------------------------------------------------------------------------------- /images/themes/default/Constraints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Constraints.png -------------------------------------------------------------------------------- /images/themes/default/Conversion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Conversion.png -------------------------------------------------------------------------------- /images/themes/default/Conversions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Conversions.png -------------------------------------------------------------------------------- /images/themes/default/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Copy.png -------------------------------------------------------------------------------- /images/themes/default/CorruptedDatabase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/CorruptedDatabase.png -------------------------------------------------------------------------------- /images/themes/default/Cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Cut.png -------------------------------------------------------------------------------- /images/themes/default/Database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Database.png -------------------------------------------------------------------------------- /images/themes/default/Databases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Databases.png -------------------------------------------------------------------------------- /images/themes/default/Definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Definition.png -------------------------------------------------------------------------------- /images/themes/default/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Delete.png -------------------------------------------------------------------------------- /images/themes/default/DisabledJob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/DisabledJob.png -------------------------------------------------------------------------------- /images/themes/default/DisconnectedDatabase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/DisconnectedDatabase.png -------------------------------------------------------------------------------- /images/themes/default/DisconnectedServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/DisconnectedServer.png -------------------------------------------------------------------------------- /images/themes/default/Domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Domain.png -------------------------------------------------------------------------------- /images/themes/default/Domains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Domains.png -------------------------------------------------------------------------------- /images/themes/default/EnableArgument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/EnableArgument.png -------------------------------------------------------------------------------- /images/themes/default/Erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Erase.png -------------------------------------------------------------------------------- /images/themes/default/Execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Execute.png -------------------------------------------------------------------------------- /images/themes/default/ExecuteSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/ExecuteSave.png -------------------------------------------------------------------------------- /images/themes/default/Explain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Explain.png -------------------------------------------------------------------------------- /images/themes/default/Export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Export.png -------------------------------------------------------------------------------- /images/themes/default/Favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Favicon.ico -------------------------------------------------------------------------------- /images/themes/default/Filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Filter.png -------------------------------------------------------------------------------- /images/themes/default/ForeignKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/ForeignKey.png -------------------------------------------------------------------------------- /images/themes/default/Fts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Fts.png -------------------------------------------------------------------------------- /images/themes/default/FtsCfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/FtsCfg.png -------------------------------------------------------------------------------- /images/themes/default/FtsDict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/FtsDict.png -------------------------------------------------------------------------------- /images/themes/default/FtsParser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/FtsParser.png -------------------------------------------------------------------------------- /images/themes/default/Function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Function.png -------------------------------------------------------------------------------- /images/themes/default/Functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Functions.png -------------------------------------------------------------------------------- /images/themes/default/GurusHint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/GurusHint.png -------------------------------------------------------------------------------- /images/themes/default/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Help.png -------------------------------------------------------------------------------- /images/themes/default/Histories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Histories.png -------------------------------------------------------------------------------- /images/themes/default/History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/History.png -------------------------------------------------------------------------------- /images/themes/default/I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/I.png -------------------------------------------------------------------------------- /images/themes/default/Import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Import.png -------------------------------------------------------------------------------- /images/themes/default/Index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Index.png -------------------------------------------------------------------------------- /images/themes/default/Indexes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Indexes.png -------------------------------------------------------------------------------- /images/themes/default/Introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Introduction.png -------------------------------------------------------------------------------- /images/themes/default/Job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Job.png -------------------------------------------------------------------------------- /images/themes/default/Jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Jobs.png -------------------------------------------------------------------------------- /images/themes/default/Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Key.png -------------------------------------------------------------------------------- /images/themes/default/L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/L.png -------------------------------------------------------------------------------- /images/themes/default/Language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Language.png -------------------------------------------------------------------------------- /images/themes/default/Languages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Languages.png -------------------------------------------------------------------------------- /images/themes/default/Listen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Listen.png -------------------------------------------------------------------------------- /images/themes/default/Listens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Listens.png -------------------------------------------------------------------------------- /images/themes/default/Lminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Lminus.png -------------------------------------------------------------------------------- /images/themes/default/Loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Loading.gif -------------------------------------------------------------------------------- /images/themes/default/LowerArgument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/LowerArgument.png -------------------------------------------------------------------------------- /images/themes/default/Lplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Lplus.png -------------------------------------------------------------------------------- /images/themes/default/Node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Node.png -------------------------------------------------------------------------------- /images/themes/default/Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Nodes.png -------------------------------------------------------------------------------- /images/themes/default/ObjectNotFound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/ObjectNotFound.png -------------------------------------------------------------------------------- /images/themes/default/OfferedReplicationSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/OfferedReplicationSet.png -------------------------------------------------------------------------------- /images/themes/default/OfferedSubscription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/OfferedSubscription.png -------------------------------------------------------------------------------- /images/themes/default/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Open.png -------------------------------------------------------------------------------- /images/themes/default/Operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Operator.png -------------------------------------------------------------------------------- /images/themes/default/OperatorClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/OperatorClass.png -------------------------------------------------------------------------------- /images/themes/default/OperatorClasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/OperatorClasses.png -------------------------------------------------------------------------------- /images/themes/default/Operators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Operators.png -------------------------------------------------------------------------------- /images/themes/default/Paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Paste.png -------------------------------------------------------------------------------- /images/themes/default/Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Path.png -------------------------------------------------------------------------------- /images/themes/default/Paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Paths.png -------------------------------------------------------------------------------- /images/themes/default/PrimaryKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/PrimaryKey.png -------------------------------------------------------------------------------- /images/themes/default/Privileges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Privileges.png -------------------------------------------------------------------------------- /images/themes/default/Processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Processes.png -------------------------------------------------------------------------------- /images/themes/default/Property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Property.png -------------------------------------------------------------------------------- /images/themes/default/RaiseArgument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/RaiseArgument.png -------------------------------------------------------------------------------- /images/themes/default/Record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Record.png -------------------------------------------------------------------------------- /images/themes/default/Records.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Records.png -------------------------------------------------------------------------------- /images/themes/default/Redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Redo.png -------------------------------------------------------------------------------- /images/themes/default/Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Refresh.png -------------------------------------------------------------------------------- /images/themes/default/RemoveArgument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/RemoveArgument.png -------------------------------------------------------------------------------- /images/themes/default/Replication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Replication.png -------------------------------------------------------------------------------- /images/themes/default/ReplicationSets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/ReplicationSets.png -------------------------------------------------------------------------------- /images/themes/default/Restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Restore.png -------------------------------------------------------------------------------- /images/themes/default/Roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Roles.png -------------------------------------------------------------------------------- /images/themes/default/Rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Rule.png -------------------------------------------------------------------------------- /images/themes/default/Rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Rules.png -------------------------------------------------------------------------------- /images/themes/default/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Save.png -------------------------------------------------------------------------------- /images/themes/default/Schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Schedule.png -------------------------------------------------------------------------------- /images/themes/default/Schedules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Schedules.png -------------------------------------------------------------------------------- /images/themes/default/Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Schema.png -------------------------------------------------------------------------------- /images/themes/default/Schemas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Schemas.png -------------------------------------------------------------------------------- /images/themes/default/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Search.png -------------------------------------------------------------------------------- /images/themes/default/Sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Sequence.png -------------------------------------------------------------------------------- /images/themes/default/Sequences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Sequences.png -------------------------------------------------------------------------------- /images/themes/default/Server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Server.png -------------------------------------------------------------------------------- /images/themes/default/Servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Servers.png -------------------------------------------------------------------------------- /images/themes/default/SqlEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/SqlEditor.png -------------------------------------------------------------------------------- /images/themes/default/Statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Statistics.png -------------------------------------------------------------------------------- /images/themes/default/Step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Step.png -------------------------------------------------------------------------------- /images/themes/default/Steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Steps.png -------------------------------------------------------------------------------- /images/themes/default/Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Stop.png -------------------------------------------------------------------------------- /images/themes/default/Subscriptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Subscriptions.png -------------------------------------------------------------------------------- /images/themes/default/T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/T.png -------------------------------------------------------------------------------- /images/themes/default/Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Table.png -------------------------------------------------------------------------------- /images/themes/default/Tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Tables.png -------------------------------------------------------------------------------- /images/themes/default/Tablespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Tablespace.png -------------------------------------------------------------------------------- /images/themes/default/Tablespaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Tablespaces.png -------------------------------------------------------------------------------- /images/themes/default/Tminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Tminus.png -------------------------------------------------------------------------------- /images/themes/default/Tplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Tplus.png -------------------------------------------------------------------------------- /images/themes/default/Trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Trigger.png -------------------------------------------------------------------------------- /images/themes/default/TriggerFunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/TriggerFunction.png -------------------------------------------------------------------------------- /images/themes/default/TriggerFunctions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/TriggerFunctions.png -------------------------------------------------------------------------------- /images/themes/default/Triggers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Triggers.png -------------------------------------------------------------------------------- /images/themes/default/Type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Type.png -------------------------------------------------------------------------------- /images/themes/default/Types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Types.png -------------------------------------------------------------------------------- /images/themes/default/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Undo.png -------------------------------------------------------------------------------- /images/themes/default/UniqueConstraint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/UniqueConstraint.png -------------------------------------------------------------------------------- /images/themes/default/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/User.png -------------------------------------------------------------------------------- /images/themes/default/UserGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/UserGroup.png -------------------------------------------------------------------------------- /images/themes/default/UserGroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/UserGroups.png -------------------------------------------------------------------------------- /images/themes/default/Users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Users.png -------------------------------------------------------------------------------- /images/themes/default/Variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Variables.png -------------------------------------------------------------------------------- /images/themes/default/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/View.png -------------------------------------------------------------------------------- /images/themes/default/Views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/Views.png -------------------------------------------------------------------------------- /images/themes/default/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/blank.png -------------------------------------------------------------------------------- /images/themes/default/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/images/themes/default/title.png -------------------------------------------------------------------------------- /lang/README: -------------------------------------------------------------------------------- 1 | Translators 2 | ----------- 3 | 4 | Please read the TRANSLATORS file in the top directory. 5 | 6 | To check your translation: 7 | 8 | cd lang 9 | php langcheck (eg. 'french'); 10 | 11 | To synchronize your translation with english.php: 12 | 13 | cd lang 14 | ./synch (eg. 'polish'); 15 | -------------------------------------------------------------------------------- /libraries/adodb/adodb-iterator.inc.php: -------------------------------------------------------------------------------- 1 | Execute("select * from adoxyz"); 15 | foreach($rs as $k => $v) { 16 | echo $k; print_r($v); echo "
"; 17 | } 18 | 19 | 20 | Iterator code based on http://cvs.php.net/cvs.php/php-src/ext/spl/examples/cachingiterator.inc?login=2 21 | 22 | 23 | Moved to adodb.inc.php to improve performance. 24 | */ 25 | 26 | 27 | 28 | 29 | 30 | ?> -------------------------------------------------------------------------------- /libraries/adodb/adodb-lib.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/adodb-lib.inc.php -------------------------------------------------------------------------------- /libraries/adodb/adodb.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/adodb.inc.php -------------------------------------------------------------------------------- /libraries/adodb/drivers/adodb-postgres.inc.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/adodb/drivers/adodb-postgres8.inc.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb-ar.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb-ar.inc.php -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb-bg.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb-bg.inc.php -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb-ca.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb-ca.inc.php -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb-cn.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb-cn.inc.php -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb-cz.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb-cz.inc.php -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb-hu.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb-hu.inc.php -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb-pl.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb-pl.inc.php -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb-pt-br.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb-pt-br.inc.php -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb-ru1251.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb-ru1251.inc.php -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb-sv.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb-sv.inc.php -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb-uk1251.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb-uk1251.inc.php -------------------------------------------------------------------------------- /libraries/adodb/lang/adodb_th.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/libraries/adodb/lang/adodb_th.inc.php -------------------------------------------------------------------------------- /links.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Function for updating browser frame and topbar frame so that sqledit window 3 | * pops up with properly selected database. 4 | * 5 | * $Id: links.js,v 1.4 2004/07/13 15:24:41 jollytoad Exp $ 6 | */ 7 | function updateLinks(getVars) { 8 | var topbarLink = 'topbar.php' + getVars; 9 | var browserLink = 'browser.php' + getVars; 10 | var detailLink = 'redirect.php' + getVars + 'section=database'; 11 | 12 | parent.frames.topbar.location = topbarLink; 13 | parent.frames.detail.location = detailLink; 14 | parent.frames.browser.location = browserLink; 15 | } 16 | 17 | -------------------------------------------------------------------------------- /loader.php: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- 1 | --- 2 | #Generated manifest 3 | applications: 4 | - name: phppgadmin-cfready 5 | memory: 1G 6 | instances: 1 7 | -------------------------------------------------------------------------------- /multiactionform.js: -------------------------------------------------------------------------------- 1 | function checkAll(bool) { 2 | 3 | var inputs = document.getElementById('multi_form').getElementsByTagName('input'); 4 | 5 | for (var i=0; ido_action($_REQUEST['plugin'], $_REQUEST['action']); 5 | ?> 6 | -------------------------------------------------------------------------------- /plugins/Report/INSTALL: -------------------------------------------------------------------------------- 1 | phpPgAdmin Report Plugin Installation Guide 2 | ------------------------------------------- 3 | 1. Report Plugin activation 4 | 5 | Open conf/config.inc.php and add the 'Report' value in the $conf['plugins'] array: 6 | 7 | $conf['plugins'] = array('Report'); 8 | 9 | 2. Set up the reports database. 10 | 11 | If you want to enable reports (which are a useful feature) then go to 12 | the 'sql' subdirectory and view the SQL script for your database. It 13 | will contain instructions on how to set up the reports database. 14 | -------------------------------------------------------------------------------- /plugins/Report/conf/config.inc.php: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /plugins/Report/images/Report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/plugins/Report/images/Report.png -------------------------------------------------------------------------------- /plugins/Report/images/Reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/plugins/Report/images/Reports.png -------------------------------------------------------------------------------- /plugins/Report/lang/chinese-sim.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /plugins/Report/lang/chinese-tr.php: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /plugins/Report/lang/chinese-utf8-zh_CN.php: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /plugins/Report/sql/reports-pgsql.sql: -------------------------------------------------------------------------------- 1 | -- SQL script to create reports database for PostgreSQL 2 | -- 3 | -- To run, type: psql template1 < reports-pgsql.sql 4 | -- 5 | -- $Id: reports-pgsql.sql,v 1.4 2007/04/16 11:02:36 mr-russ Exp $ 6 | 7 | CREATE DATABASE phppgadmin; 8 | 9 | \connect phppgadmin 10 | 11 | CREATE TABLE ppa_reports ( 12 | report_id SERIAL, 13 | report_name varchar(255) NOT NULL, 14 | db_name varchar(255) NOT NULL, 15 | date_created date DEFAULT NOW() NOT NULL, 16 | created_by varchar(255) NOT NULL, 17 | descr text, 18 | report_sql text NOT NULL, 19 | paginate boolean NOT NULL, 20 | PRIMARY KEY (report_id) 21 | ); 22 | 23 | -- Allow everyone to do everything with reports. This may 24 | -- or may not be what you want. 25 | GRANT SELECT,INSERT,UPDATE,DELETE ON ppa_reports TO PUBLIC; 26 | GRANT SELECT,UPDATE ON ppa_reports_report_id_seq TO PUBLIC; 27 | 28 | -------------------------------------------------------------------------------- /redirect.php: -------------------------------------------------------------------------------- 1 | getLastTabURL($subject); 10 | 11 | // Load query vars into superglobal arrays 12 | if (isset($url['urlvars'])) { 13 | $urlvars = array(); 14 | 15 | foreach($url['urlvars'] as $k => $urlvar) { 16 | $urlvars[$k] = value($urlvar, $_REQUEST); 17 | } 18 | 19 | /* parse_str function is affected by magic_quotes_gpc */ 20 | if (ini_get('magic_quotes_gpc')) { 21 | $misc->stripVar($urlvars); 22 | } 23 | 24 | $_REQUEST = array_merge($_REQUEST, $urlvars); 25 | $_GET = array_merge($_GET, $urlvars); 26 | } 27 | 28 | require $url['url']; 29 | ?> 30 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | # Prevent web robots from indexing your phpPgAdmin installation 2 | # See: http://www.searchengineworld.com/robots/robots_tutorial.htm 3 | # 4 | # $Id: robots.txt,v 1.1 2003/09/01 03:02:17 chriskl Exp $ 5 | 6 | User-agent: * 7 | Disallow: / 8 | 9 | -------------------------------------------------------------------------------- /tables.js: -------------------------------------------------------------------------------- 1 | var predefined_lengths = null; 2 | var sizesLength = false; 3 | 4 | function checkLengths(sValue,idx) { 5 | if(predefined_lengths) { 6 | if(sizesLength==false) { 7 | sizesLength = predefined_lengths.length; 8 | } 9 | for(var i=0;i 'Default', 12 | 'cappuccino' => 'Cappuccino', 13 | 'gotar' => 'Blue/Green', 14 | 'bootstrap' => 'Bootstrap3' 15 | ); 16 | ?> 17 | -------------------------------------------------------------------------------- /vendor/arhframe/util/README.md: -------------------------------------------------------------------------------- 1 | util 2 | ==== 3 | 4 | Util libraries for arhframe 5 | -------------------------------------------------------------------------------- /vendor/arhframe/util/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "arhframe/util", 3 | "description": "Util class for arhframe", 4 | "keywords": ["Framework", "Util", "Arhframe"], 5 | "homepage": "https://github.com/arhframe/util", 6 | "type": "library", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Arthur Halet", 11 | "email": "arthurh.halet@gmail.com", 12 | "homepage": "http://arthurh.fr" 13 | } 14 | ], 15 | "require": { 16 | "php": ">=5.3.0" 17 | }, 18 | "autoload": { 19 | "psr-0": { 20 | "Arhframe\\Util": "src/" 21 | } 22 | }, 23 | "support": { 24 | "email": "arthurh.halet@gmail.com" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/arhframe/util/src/Arhframe/Util/UtilException.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/filp/whoops/src/deprecated/Zend/Module.php', 10 | 'Whoops\\Provider\\Zend\\ExceptionStrategy' => $vendorDir . '/filp/whoops/src/deprecated/Zend/ExceptionStrategy.php', 11 | 'Whoops\\Provider\\Zend\\RouteNotFoundStrategy' => $vendorDir . '/filp/whoops/src/deprecated/Zend/RouteNotFoundStrategy.php', 12 | ); 13 | -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/myclabs/php-enum/src'), 10 | 'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'), 11 | 'CfCommunity\\CfHelper\\' => array($vendorDir . '/cloudfoundry-community/cf-helper-php/src/CfCommunity/CfHelper'), 12 | 'Arthurh\\Sphring\\' => array($vendorDir . '/sphring/sphring/src/Arthurh/Sphring'), 13 | 'Arhframe\\Yamlarh\\' => array($vendorDir . '/arhframe/yamlarh/src/Arhframe/Yamlarh'), 14 | ); 15 | -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Exception/ErrorException.php: -------------------------------------------------------------------------------- 1 | 5 | */ 6 | 7 | namespace Whoops\Exception; 8 | 9 | use ErrorException as BaseErrorException; 10 | 11 | /** 12 | * Wraps ErrorException; mostly used for typing (at least now) 13 | * to easily cleanup the stack trace of redundant info. 14 | */ 15 | class ErrorException extends BaseErrorException 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/filp/whoops/src/deprecated/Zend/module.config.example.php: -------------------------------------------------------------------------------- 1 | 5 | * 6 | * Example controller configuration 7 | */ 8 | 9 | return array( 10 | 'view_manager' => array( 11 | 'editor' => 'sublime', 12 | 'display_not_found_reason' => true, 13 | 'display_exceptions' => true, 14 | 'json_exceptions' => array( 15 | 'display' => true, 16 | 'ajax_only' => true, 17 | 'show_trace' => true, 18 | ), 19 | ), 20 | ); 21 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/.php_cs: -------------------------------------------------------------------------------- 1 | files() 5 | ->name('*.php') 6 | ->in(__DIR__.'/src') 7 | ->in(__DIR__.'/tests') 8 | ; 9 | 10 | return Symfony\CS\Config\Config::create() 11 | ->fixers(array( 12 | 'psr0', 'encoding', 'short_tag', 'braces', 'elseif', 'eof_ending', 'function_declaration', 'indentation', 'line_after_namespace', 'linefeed', 'lowercase_constants', 'lowercase_keywords', 'multiple_use', 'php_closing_tag', 'trailing_spaces', 'visibility', 'duplicate_semicolon', 'extra_empty_lines', 'include', 'namespace_no_leading_whitespace', 'object_operator', 'operators_spaces', 'phpdoc_params', 'return', 'single_array_no_trailing_comma', 'spaces_cast', 'standardize_not_equal', 'ternary_spaces', 'unused_use', 'whitespacy_lines', 13 | )) 14 | ->finder($finder) 15 | ; 16 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | tests/Monolog/ 7 | 8 | 9 | 10 | 11 | 12 | src/Monolog/ 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Handler\FingersCrossed; 13 | 14 | /** 15 | * Interface for activation strategies for the FingersCrossedHandler. 16 | * 17 | * @author Johannes M. Schmitt 18 | */ 19 | interface ActivationStrategyInterface 20 | { 21 | /** 22 | * Returns whether the given record activates the handler. 23 | * 24 | * @param array $record 25 | * @return Boolean 26 | */ 27 | public function isHandlerActivated(array $record); 28 | } 29 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Handler; 13 | 14 | /** 15 | * Exception can be thrown if an extension for an handler is missing 16 | * 17 | * @author Christian Bergau 18 | */ 19 | class MissingExtensionException extends \Exception 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Processor; 13 | 14 | /** 15 | * Adds value of getmypid into records 16 | * 17 | * @author Andreas Hörnicke 18 | */ 19 | class ProcessIdProcessor 20 | { 21 | /** 22 | * @param array $record 23 | * @return array 24 | */ 25 | public function __invoke(array $record) 26 | { 27 | $record['extra']['process_id'] = getmypid(); 28 | 29 | return $record; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Processor; 13 | 14 | /** 15 | * Adds a tags array into record 16 | * 17 | * @author Martijn Riemers 18 | */ 19 | class TagProcessor 20 | { 21 | private $tags; 22 | 23 | public function __construct(array $tags = array()) 24 | { 25 | $this->tags = $tags; 26 | } 27 | 28 | public function __invoke(array $record) 29 | { 30 | $record['extra']['tags'] = $this->tags; 31 | 32 | return $record; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/Monolog/Handler/GelfMockMessagePublisher.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Handler; 13 | 14 | use Gelf\MessagePublisher; 15 | use Gelf\Message; 16 | 17 | class GelfMockMessagePublisher extends MessagePublisher 18 | { 19 | public function publish(Message $message) 20 | { 21 | $this->lastMessage = $message; 22 | } 23 | 24 | public $lastMessage = null; 25 | } 26 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/Monolog/Handler/MockRavenClient.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Handler; 13 | 14 | use Raven_Client; 15 | 16 | class MockRavenClient extends Raven_Client 17 | { 18 | public function capture($data, $stack, $vars = null) 19 | { 20 | $this->lastData = $data; 21 | $this->lastStack = $stack; 22 | } 23 | 24 | public $lastData; 25 | public $lastStack; 26 | } 27 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/Monolog/Processor/GitProcessorTest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Processor; 13 | 14 | use Monolog\TestCase; 15 | 16 | class GitProcessorTest extends TestCase 17 | { 18 | /** 19 | * @covers Monolog\Processor\GitProcessor::__invoke 20 | */ 21 | public function testProcessor() 22 | { 23 | $processor = new GitProcessor(); 24 | $record = $processor($this->getRecord()); 25 | 26 | $this->assertArrayHasKey('git', $record['extra']); 27 | $this->assertTrue(!is_array($record['extra']['git']['branch'])); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/Monolog/Processor/TagProcessorTest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Processor; 13 | 14 | use Monolog\TestCase; 15 | 16 | class TagProcessorTest extends TestCase 17 | { 18 | /** 19 | * @covers Monolog\Processor\TagProcessor::__invoke 20 | */ 21 | public function testProcessor() 22 | { 23 | $tags = array(1, 2, 3); 24 | $processor = new TagProcessor($tags); 25 | $record = $processor($this->getRecord()); 26 | 27 | $this->assertEquals($tags, $record['extra']['tags']); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/Monolog/Processor/UidProcessorTest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Monolog\Processor; 13 | 14 | use Monolog\TestCase; 15 | 16 | class UidProcessorTest extends TestCase 17 | { 18 | /** 19 | * @covers Monolog\Processor\UidProcessor::__invoke 20 | */ 21 | public function testProcessor() 22 | { 23 | $processor = new UidProcessor(); 24 | $record = $processor($this->getRecord()); 25 | $this->assertArrayHasKey('uid', $record['extra']); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | $loader = require __DIR__ . "/../vendor/autoload.php"; 13 | $loader->addPsr4('Monolog\\', __DIR__.'/Monolog'); 14 | 15 | date_default_timezone_set('UTC'); 16 | -------------------------------------------------------------------------------- /vendor/myclabs/php-enum/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "myclabs/php-enum", 3 | "type": "library", 4 | "description": "PHP Enum implementation", 5 | "keywords": ["enum"], 6 | "homepage": "http://github.com/myclabs/php-enum", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "PHP Enum contributors", 11 | "homepage": "https://github.com/myclabs/php-enum/graphs/contributors" 12 | } 13 | ], 14 | "autoload": { 15 | "psr-4": { 16 | "MyCLabs\\Enum\\": "src/" 17 | } 18 | }, 19 | "autoload-dev": { 20 | "psr-4": { 21 | "MyCLabs\\Tests\\Enum\\": "tests/" 22 | } 23 | }, 24 | "require": { 25 | "php": ">=5.3" 26 | }, 27 | "require-dev": { 28 | "phpunit/phpunit": "4.*", 29 | "squizlabs/php_codesniffer": "1.*" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/.travis.install.sh: -------------------------------------------------------------------------------- 1 | set -x 2 | if [ "$TRAVIS_PHP_VERSION" = 'hhvm' ] || [ "$TRAVIS_PHP_VERSION" = 'hhvm-nightly' ] ; then 3 | curl -sS https://getcomposer.org/installer > composer-installer.php 4 | hhvm composer-installer.php 5 | hhvm -v ResourceLimit.SocketDefaultTimeout=30 -v Http.SlowQueryThreshold=30000 composer.phar update --prefer-source 6 | hhvm -v ResourceLimit.SocketDefaultTimeout=30 -v Http.SlowQueryThreshold=30000 composer.phar install --dev --prefer-source 7 | else 8 | composer self-update 9 | composer update --prefer-source 10 | composer install --dev --prefer-source 11 | fi 12 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | - hhvm 10 | - hhvm-nightly 11 | 12 | before_script: 13 | - sh .travis.install.sh 14 | 15 | script: 16 | - ./vendor/bin/phpunit --disallow-test-output --report-useless-tests --coverage-clover ./clover.xml --group=Coverage 17 | - ./vendor/bin/phpunit --disallow-test-output --report-useless-tests --strict --exclude-group=Performance,Coverage 18 | - php -n ./vendor/bin/phpunit --group=Performance 19 | - ./vendor/bin/phpcs --standard=PSR2 ./src/ ./tests/ 20 | 21 | matrix: 22 | allow_failures: 23 | - php: hhvm 24 | - php: hhvm-nightly 25 | 26 | after_script: 27 | - wget https://scrutinizer-ci.com/ocular.phar 28 | - php ocular.phar code-coverage:upload --format=php-clover ./clover.xml 29 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/STABILITY.md: -------------------------------------------------------------------------------- 1 | This is a list of supported versions, with their expected release/support time-frames: 2 | 3 | # 0.5.x 4 | 5 | * Release date: 2013-12-01 6 | * Bug fixes: till 2015-03-11 7 | * Security fixes: till 2015-12-11 8 | 9 | # 1.0.x 10 | 11 | * Release date: 2014-12-12 12 | * Bug fixes: till 2015-12-11 13 | * Security fixes: till 2016-12-11 14 | 15 | # 2.0.x 16 | 17 | * Release date: TBA 18 | * Bug fixes: TBA 19 | * Security fixes: TBA 20 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/examples/remote-proxy/remote-proxy-server.php: -------------------------------------------------------------------------------- 1 | setClass(new Foo(), 'Foo'); 18 | $server->setReturnResponse(false); 19 | 20 | $server->handle(); 21 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/examples/smart-reference.php: -------------------------------------------------------------------------------- 1 | createProxy( 18 | new Foo(), 19 | array('doFoo' => function () { echo "pre-foo!\n"; }), 20 | array('doFoo' => function () { echo "post-foo!\n"; }) 21 | ); 22 | 23 | $proxy->doFoo(); 24 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/html-docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/vendor/ocramius/proxy-manager/html-docs/favicon.ico -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/html-docs/img/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/vendor/ocramius/proxy-manager/html-docs/img/block.png -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/html-docs/img/enf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/vendor/ocramius/proxy-manager/html-docs/img/enf.png -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/phpdox.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/phpmd.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/proxy-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/phppgadmin-cf/3a0ebce4991e279083cd6443f4dec64644913fec/vendor/ocramius/proxy-manager/proxy-manager.png -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/README.md: -------------------------------------------------------------------------------- 1 | ## Integration tests for PHP language features of proxies 2 | 3 | Since proxies are quire complex code, this directory is dedicated 4 | to integration tests that are supposed to cause fatal errors or 5 | failures in general that are hard to handle in traditional 6 | PHPUnit test cases. 7 | 8 | You may find a guide on how to write `.phpt` tests on the 9 | [PHP QA website](http://qa.php.net/write-test.php). -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-denies-private-property-isset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow private property direct isset check 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | var_dump(isset($proxy->sweets)); 18 | ?> 19 | --EXPECT-- 20 | bool(false) -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-denies-private-property-read.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow private property direct read 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | $proxy->sweets; 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot access private property %s::$sweets in %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-denies-private-property-unset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow private property direct unset 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | unset($proxy->sweets); 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot %s property %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-denies-private-property-write.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow private property direct write 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | $proxy->sweets = 'stolen'; 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot access %s property%S in %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-denies-protected-property-isset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow protected property direct isset check 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | var_dump(isset($proxy->sweets)); 18 | ?> 19 | --EXPECT-- 20 | bool(false) -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-denies-protected-property-read.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow protected property direct read 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | $proxy->sweets; 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot access protected property %s::$sweets in %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-denies-protected-property-unset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow protected property direct unset 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | unset($proxy->sweets); 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot %s property%sin %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-denies-protected-property-write.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow protected property direct write 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | $proxy->sweets = 'stolen'; 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot %s property%sin %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-scope-localizer-denies-private-property-isset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow private property direct isset check 3 | --SKIPIF-- 4 | 9 | --FILE-- 10 | createProxy(new Kitchen()); 22 | 23 | var_dump(isset($proxy->sweets)); 24 | ?> 25 | --EXPECT-- 26 | bool(false) 27 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-scope-localizer-denies-private-property-read.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow private property direct read 3 | --SKIPIF-- 4 | 9 | --FILE-- 10 | createProxy(new Kitchen()); 22 | 23 | $proxy->sweets; 24 | ?> 25 | --EXPECTF-- 26 | %SFatal error: Cannot access private property %s::$sweets in %s on line %d 27 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-scope-localizer-denies-private-property-unset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow private property direct unset 3 | --SKIPIF-- 4 | 9 | --FILE-- 10 | createProxy(new Kitchen()); 22 | 23 | unset($proxy->sweets); 24 | ?> 25 | --EXPECTF-- 26 | %SFatal error: Cannot %s property%sin %s on line %d 27 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-scope-localizer-denies-private-property-write.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow private property direct write 3 | --SKIPIF-- 4 | 9 | --FILE-- 10 | createProxy(new Kitchen()); 22 | 23 | $proxy->sweets = 'stolen'; 24 | ?> 25 | --EXPECTF-- 26 | %SFatal error: Cannot %s property%sin %s on line %d 27 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-scope-localizer-denies-protected-property-isset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow protected property direct isset check 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | var_dump(isset($proxy->sweets)); 18 | ?> 19 | --EXPECT-- 20 | bool(false) 21 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-scope-localizer-denies-protected-property-read.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow protected property direct read 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | $proxy->sweets; 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot access protected property %s::$sweets in %s on line %d 21 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-scope-localizer-denies-protected-property-unset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow protected property direct unset 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | unset($proxy->sweets); 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot %s property%sin %s on line %d 21 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/access-interceptor-scope-localizer-denies-protected-property-write.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated access interceptors disallow protected property direct write 3 | --FILE-- 4 | createProxy(new Kitchen()); 16 | 17 | $proxy->sweets = 'stolen'; 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot %s property%sin %s on line %d 21 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/cache/README.md: -------------------------------------------------------------------------------- 1 | ## Integration tests for PHP language features of proxies 2 | 3 | This folder is used for the caches -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/init.php: -------------------------------------------------------------------------------- 1 | setGeneratorStrategy(new EvaluatingGeneratorStrategy()); 11 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-allows-inexisting-magic-property-read.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading ghost objects disallow reading non-existing properties via direct read 3 | --FILE-- 4 | createProxy('Kitchen', function () {}); 21 | 22 | echo $proxy->nonExisting; 23 | ?> 24 | --EXPECTF-- 25 | nonExisting -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-allows-inexisting-property-write.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading ghost objects disallow reading non-existing properties via direct read 3 | --FILE-- 4 | createProxy('Kitchen', function () {}); 16 | 17 | $proxy->nonExisting = 'I do not exist'; 18 | echo $proxy->nonExisting; 19 | ?> 20 | --EXPECTF-- 21 | I do not exist -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-denies-inexisting-property-read.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading ghost objects disallow reading non-existing properties via direct read 3 | --FILE-- 4 | createProxy('Kitchen', function () {}); 16 | 17 | $proxy->nonExisting; 18 | ?> 19 | --EXPECTF-- 20 | %SNotice: Undefined property: Kitchen::$nonExisting in %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-denies-private-property-isset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading ghost objects disallow private property direct isset check 3 | --FILE-- 4 | createProxy('Kitchen', function () {}); 16 | 17 | var_dump(isset($proxy->sweets)); 18 | ?> 19 | --EXPECT-- 20 | bool(false) -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-denies-private-property-read.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading ghost objects disallow private property direct read 3 | --FILE-- 4 | createProxy('Kitchen', function () {}); 16 | 17 | $proxy->sweets; 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot access private property %s::$sweets in %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-denies-private-property-unset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading ghost objects disallow private property direct unset 3 | --FILE-- 4 | createProxy('Kitchen', function () {}); 16 | 17 | unset($proxy->sweets); 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot %s property %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-denies-private-property-write.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading ghost objects disallow private property direct write 3 | --FILE-- 4 | createProxy('Kitchen', function () {}); 16 | 17 | $proxy->sweets = 'stolen'; 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot access %s property%S in %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-denies-protected-property-isset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading ghost objects disallow protected property direct isset check 3 | --FILE-- 4 | createProxy('Kitchen', function () {}); 16 | 17 | var_dump(isset($proxy->sweets)); 18 | ?> 19 | --EXPECT-- 20 | bool(false) -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-denies-protected-property-read.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading ghost objects disallow protected property direct read 3 | --FILE-- 4 | createProxy('Kitchen', function () {}); 16 | 17 | $proxy->sweets; 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot access protected property %s::$sweets in %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-denies-protected-property-unset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading ghost objects disallow protected property direct unset 3 | --FILE-- 4 | createProxy('Kitchen', function () {}); 16 | 17 | unset($proxy->sweets); 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot %s property%sin %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-denies-protected-property-write.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading ghost objects disallow protected property direct write 3 | --FILE-- 4 | createProxy('Kitchen', function () {}); 16 | 17 | $proxy->sweets = 'stolen'; 18 | ?> 19 | --EXPECTF-- 20 | %SFatal error: Cannot %s property%sin %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-value-holder-denies-private-property-isset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading value holders disallow private property direct isset check 3 | --FILE-- 4 | createProxy('Kitchen', function (& $wrapped, $proxy, $method, array $parameters, & $initializer) { 16 | $initializer = null; 17 | $wrapped = new Kitchen(); 18 | }); 19 | 20 | var_dump(isset($proxy->sweets)); 21 | ?> 22 | --EXPECT-- 23 | bool(false) -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-value-holder-denies-private-property-read.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading value holders disallow private property direct read 3 | --FILE-- 4 | createProxy('Kitchen', function (& $wrapped, $proxy, $method, array $parameters, & $initializer) { 16 | $initializer = null; 17 | $wrapped = new Kitchen(); 18 | }); 19 | 20 | $proxy->sweets; 21 | ?> 22 | --EXPECTF-- 23 | %SFatal error: Cannot access private property %s::$sweets in %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-value-holder-denies-private-property-unset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading value holders disallow private property direct unset 3 | --FILE-- 4 | createProxy('Kitchen', function (& $wrapped, $proxy, $method, array $parameters, & $initializer) { 16 | $initializer = null; 17 | $wrapped = new Kitchen(); 18 | }); 19 | 20 | unset($proxy->sweets); 21 | ?> 22 | --EXPECTF-- 23 | %SFatal error: Cannot %s property %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-value-holder-denies-private-property-write.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading value holders disallow private property direct write 3 | --FILE-- 4 | createProxy('Kitchen', function (& $wrapped, $proxy, $method, array $parameters, & $initializer) { 16 | $initializer = null; 17 | $wrapped = new Kitchen(); 18 | }); 19 | 20 | $proxy->sweets = 'stolen'; 21 | ?> 22 | --EXPECTF-- 23 | %SFatal error: Cannot access %s property %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-value-holder-denies-protected-property-isset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading value holders disallow protected property direct isset check 3 | --FILE-- 4 | createProxy('Kitchen', function (& $wrapped, $proxy, $method, array $parameters, & $initializer) { 16 | $initializer = null; 17 | $wrapped = new Kitchen(); 18 | }); 19 | 20 | var_dump(isset($proxy->sweets)); 21 | ?> 22 | --EXPECT-- 23 | bool(false) -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-value-holder-denies-protected-property-read.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading value holders disallow protected property direct read 3 | --FILE-- 4 | createProxy('Kitchen', function (& $wrapped, $proxy, $method, array $parameters, & $initializer) { 16 | $initializer = null; 17 | $wrapped = new Kitchen(); 18 | }); 19 | 20 | $proxy->sweets; 21 | ?> 22 | --EXPECTF-- 23 | %SFatal error: Cannot access protected property %s::$sweets in %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-value-holder-denies-protected-property-unset.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading value holders disallow protected property direct unset 3 | --FILE-- 4 | createProxy('Kitchen', function (& $wrapped, $proxy, $method, array $parameters, & $initializer) { 16 | $initializer = null; 17 | $wrapped = new Kitchen(); 18 | }); 19 | 20 | unset($proxy->sweets); 21 | ?> 22 | --EXPECTF-- 23 | %SFatal error: Cannot %s property%sin %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-value-holder-denies-protected-property-write.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated lazy loading value holders disallow protected property direct write 3 | --FILE-- 4 | createProxy('Kitchen', function (& $wrapped, $proxy, $method, array $parameters, & $initializer) { 16 | $initializer = null; 17 | $wrapped = new Kitchen(); 18 | }); 19 | 20 | $proxy->sweets = 'stolen'; 21 | ?> 22 | --EXPECTF-- 23 | %SFatal error: Cannot %s property%sin %s on line %d -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/null-object-public-function-empty.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated null object disallow public function 3 | --FILE-- 4 | createProxy('Kitchen'); 19 | 20 | var_dump($proxy->foo()); 21 | ?> 22 | --EXPECT-- 23 | NULL 24 | -------------------------------------------------------------------------------- /vendor/ocramius/proxy-manager/tests/language-feature-scripts/null-object-public-property-empty.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Verifies that generated null object disallow public function 3 | --FILE-- 4 | createProxy('Kitchen'); 16 | 17 | var_dump($proxy->foo); 18 | ?> 19 | --EXPECT-- 20 | NULL 21 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- 1 | logger) { }` 11 | * blocks. 12 | */ 13 | class NullLogger extends AbstractLogger 14 | { 15 | /** 16 | * Logs with an arbitrary level. 17 | * 18 | * @param mixed $level 19 | * @param string $message 20 | * @param array $context 21 | * @return null 22 | */ 23 | public function log($level, $message, array $context = array()) 24 | { 25 | // noop 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vendor/psr/log/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/log", 3 | "description": "Common interface for logging libraries", 4 | "keywords": ["psr", "psr-3", "log"], 5 | "license": "MIT", 6 | "authors": [ 7 | { 8 | "name": "PHP-FIG", 9 | "homepage": "http://www.php-fig.org/" 10 | } 11 | ], 12 | "autoload": { 13 | "psr-0": { 14 | "Psr\\Log\\": "" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/.atoum.php: -------------------------------------------------------------------------------- 1 | addTestAllDirectory(__DIR__ . '/test'); 14 | 15 | $stdOutWriter = new atoum\writers\std\out(); 16 | 17 | $coverageField = new atoum\report\fields\runner\coverage\html(COVERAGE_TITLE, COVERAGE_DIRECTORY); 18 | $coverageField->setRootUrl(COVERAGE_WEB_PATH); 19 | 20 | $cliReport = new atoum\reports\realtime\cli(); 21 | $cliReport 22 | ->addWriter($stdOutWriter) 23 | ->addField($coverageField, array(atoum\runner::runStop)) 24 | ; 25 | 26 | $runner->setBootstrapFile('test/bootstrap.php'); 27 | 28 | $runner->addReport($cliReport); 29 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/.travis.yml: -------------------------------------------------------------------------------- 1 | # set up languages 2 | language: php 3 | php: 4 | - "5.4" 5 | - "5.3" 6 | # we use composer for vendors, including atoum 7 | before_script: 8 | - composer install 9 | script: ./bin/test --test-all 10 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/bin/test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | vendor/bin/atoum $* 3 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "romaricdrigon/metayaml", 3 | "type": "library", 4 | "description": "Using [Yaml|Xml|json] schemas files to validate [Yaml|Xml|json] ", 5 | "homepage": "http://github.com/romaricdrigon/MetaYaml", 6 | "keywords": ["yaml", "xml", "json", "validation", "schema"], 7 | "license": "MIT", 8 | "autoload": { 9 | "psr-0": { 10 | "RomaricDrigon\\MetaYaml": "src/" 11 | } 12 | }, 13 | "require": { 14 | "php": ">=5.3.3", 15 | "symfony/yaml": "~2.3" 16 | }, 17 | "require-dev": { 18 | "atoum/atoum": "dev-master#c6ec75d4cf132728e80ec8ed1470b83cb53fc1c9" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/src/RomaricDrigon/MetaYaml/Exception/NodeValidatorException.php: -------------------------------------------------------------------------------- 1 | node_path = $node_path; 12 | 13 | parent::__construct($message); 14 | } 15 | 16 | public function getNodePath() 17 | { 18 | return $this->node_path; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/src/RomaricDrigon/MetaYaml/Loader/JsonLoader.php: -------------------------------------------------------------------------------- 1 | load($json); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/src/RomaricDrigon/MetaYaml/Loader/Loader.php: -------------------------------------------------------------------------------- 1 | load($yaml); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/src/RomaricDrigon/MetaYaml/NodeValidator/BooleanNodeValidator.php: -------------------------------------------------------------------------------- 1 | checkRequired($name, $node, $data)) return true; 12 | 13 | $strict = isset($node[$this->schema_validator->getFullName('strict')]) && isset($node[$this->schema_validator->getFullName('strict')]); 14 | 15 | if (is_bool($data) || (! $strict && ($data == 'true' || $data == 'false'))) { 16 | return true; 17 | } else { 18 | throw new NodeValidatorException($name, "The node '$name' is not a boolean"); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/src/RomaricDrigon/MetaYaml/NodeValidator/NodeValidatorInterface.php: -------------------------------------------------------------------------------- 1 | checkRequired($name, $node, $data)) return true; 10 | 11 | // we will validate using the partial defined in schema -> _partials -> name 12 | return $this->schema_validator->validatePartial($node[$this->schema_validator->getFullName('partial')], $data); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/src/RomaricDrigon/MetaYaml/NodeValidator/PatternNodeValidator.php: -------------------------------------------------------------------------------- 1 | checkRequired($name, $node, $data)) return true; 12 | 13 | // preg_match return false if there's an error, 0 if not found, 1 if found 14 | if (1 !== preg_match($node[$this->schema_validator->getFullName('pattern')], $data)) { 15 | throw new NodeValidatorException($name, 16 | "Node '$name' does not match pattern '{$node[$this->schema_validator->getFullName('pattern')]}'" 17 | ); 18 | } 19 | 20 | return true; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/src/RomaricDrigon/MetaYaml/XsdNodeGenerator/XsdBooleanNodeGenerator.php: -------------------------------------------------------------------------------- 1 | startElementNs('xsd', 'element', null); 11 | $writer->writeAttribute('name', $name); 12 | $this->addRequired($node, $writer, $under_root); 13 | $writer->writeAttribute('type', 'xsd:boolean'); 14 | $writer->endElement(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/src/RomaricDrigon/MetaYaml/XsdNodeGenerator/XsdNodeGenerator.php: -------------------------------------------------------------------------------- 1 | xsd_generator = $xsd_generator; 14 | } 15 | 16 | protected function addRequired($node, \XMLWriter &$writer, $under_root) { 17 | if ($under_root === false // minOccurs is not allowed for first level elements 18 | && ! (isset($node[$this->xsd_generator->getFullName('required')]) 19 | && $node[$this->xsd_generator->getFullName('required')])) { 20 | $writer->writeAttribute('minOccurs', '0'); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/src/RomaricDrigon/MetaYaml/XsdNodeGenerator/XsdNodeGeneratorInterface.php: -------------------------------------------------------------------------------- 1 | xsd_generator->buildPartial($node[$this->xsd_generator->getFullName('partial')], $writer, $under_root); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/test/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | une rose 4 | 5 | une autre rose 6 | encore 7 | 8 | 9 | je vais disparaitre ! 10 | deuxieme tulipe 11 | une violette 12 | -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/test/unit/RomaricDrigon/MetaYaml/Loader/JsonLoader.php: -------------------------------------------------------------------------------- 1 | if($object = new testedClass()) 14 | ->then 15 | ->object($object)->isInstanceOf('RomaricDrigon\\MetaYaml\\Loader\\JsonLoader') 16 | ->array($object->loadFromFile('test/data/TestBasic/TestBase.json')) 17 | ->isEqualTo(array( 18 | 'fleurs' => array( 19 | 'rose' => 'une rose', 20 | 'violette' => 'une violette' 21 | ) 22 | )); 23 | } 24 | } -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/test/unit/RomaricDrigon/MetaYaml/Loader/YamlLoader.php: -------------------------------------------------------------------------------- 1 | if($object = new testedClass()) 14 | ->then 15 | ->object($object)->isInstanceOf('RomaricDrigon\\MetaYaml\\Loader\\YamlLoader') 16 | ->array($object->loadFromFile('test/data/TestBasic/TestBase.yml')) 17 | ->isEqualTo(array( 18 | 'fleurs' => array( 19 | 'rose' => 'une rose', 20 | 'violette' => 'une violette' 21 | ) 22 | )); 23 | } 24 | } -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/test/unit/RomaricDrigon/MetaYaml/NodeValidator/NodeValidator.php: -------------------------------------------------------------------------------- 1 | if($schema_validator = new SchemaValidator()) 15 | ->and($object = new \mock\RomaricDrigon\MetaYaml\NodeValidator\NodeValidator($schema_validator)) 16 | ->then 17 | ->object($object)->isInstanceOf('RomaricDrigon\\MetaYaml\\NodeValidator\\NodeValidator') 18 | ; 19 | } 20 | } -------------------------------------------------------------------------------- /vendor/romaricdrigon/metayaml/test/unit/RomaricDrigon/MetaYaml/XsdNodeGenerator/XsdNodeGenerator.php: -------------------------------------------------------------------------------- 1 | if($xsd_generator = new XsdGenerator()) 15 | ->and($object = new \mock\RomaricDrigon\MetaYaml\XsdNodeGenerator\XsdNodeGenerator($xsd_generator)) 16 | ->then 17 | ->object($object)->isInstanceOf('RomaricDrigon\\MetaYaml\\XsdNodeGenerator\\XsdNodeGenerator') 18 | ; 19 | } 20 | } -------------------------------------------------------------------------------- /vendor/sphring/sphring/src/Arthurh/Sphring/Enum/SphringYamlarhConstantEnum.php: -------------------------------------------------------------------------------- 1 | addListener('event_name', function (Event $event) { 14 | // ... 15 | }); 16 | 17 | $dispatcher->dispatch('event_name'); 18 | ``` 19 | 20 | Resources 21 | --------- 22 | 23 | You can run the unit tests with the following command: 24 | 25 | $ cd path/to/Symfony/Component/EventDispatcher/ 26 | $ composer install 27 | $ phpunit 28 | -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Tests/EventDispatcherTest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\EventDispatcher\Tests; 13 | 14 | use Symfony\Component\EventDispatcher\EventDispatcher; 15 | 16 | class EventDispatcherTest extends AbstractEventDispatcherTest 17 | { 18 | protected function createEventDispatcher() 19 | { 20 | return new EventDispatcher(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/symfony/expression-language/Symfony/Component/ExpressionLanguage/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 2.6.0 5 | ----- 6 | 7 | * Added ExpressionFunction and ExpressionFunctionProviderInterface 8 | 9 | 2.4.0 10 | ----- 11 | 12 | * added the component 13 | -------------------------------------------------------------------------------- /vendor/symfony/expression-language/Symfony/Component/ExpressionLanguage/ExpressionFunctionProviderInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\ExpressionLanguage; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | */ 17 | interface ExpressionFunctionProviderInterface 18 | { 19 | /** 20 | * @return ExpressionFunction[] An array of Function instances 21 | */ 22 | public function getFunctions(); 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/expression-language/Symfony/Component/ExpressionLanguage/Node/ArgumentsNode.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\ExpressionLanguage\Node; 13 | 14 | use Symfony\Component\ExpressionLanguage\Compiler; 15 | 16 | class ArgumentsNode extends ArrayNode 17 | { 18 | public function compile(Compiler $compiler) 19 | { 20 | $this->compileArguments($compiler, false); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/symfony/expression-language/Symfony/Component/ExpressionLanguage/Resources/bin/generate_operator_regex.php: -------------------------------------------------------------------------------- 1 | ', '>=', '<=', 'not in', 'in', '..', '+', '-', '~', '*', '/', '%', 'matches', '**'); 4 | $operators = array_combine($operators, array_map('strlen', $operators)); 5 | arsort($operators); 6 | 7 | $regex = array(); 8 | foreach ($operators as $operator => $length) { 9 | // an operator that ends with a character must be followed by 10 | // a whitespace or a parenthesis 11 | $regex[] = preg_quote($operator, '/').(ctype_alpha($operator[$length - 1]) ? '(?=[\s(])' : ''); 12 | } 13 | 14 | echo '/'.implode('|', $regex).'/A'; 15 | -------------------------------------------------------------------------------- /vendor/symfony/expression-language/Symfony/Component/ExpressionLanguage/SyntaxError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\ExpressionLanguage; 13 | 14 | class SyntaxError extends \LogicException 15 | { 16 | public function __construct($message, $cursor = 0) 17 | { 18 | parent::__construct(sprintf('%s around position %d.', $message, $cursor)); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/symfony/expression-language/Symfony/Component/ExpressionLanguage/Tests/ExpressionTest.php: -------------------------------------------------------------------------------- 1 | assertEquals($expression, $unserializedExpression); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/symfony/expression-language/Symfony/Component/ExpressionLanguage/Tests/Node/ArgumentsNodeTest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\ExpressionLanguage\Tests\Node; 13 | 14 | use Symfony\Component\ExpressionLanguage\Node\ArgumentsNode; 15 | 16 | class ArgumentsNodeTest extends ArrayNodeTest 17 | { 18 | public function getCompileData() 19 | { 20 | return array( 21 | array('"a", "b"', $this->getArrayNode()), 22 | ); 23 | } 24 | 25 | protected function createArrayNode() 26 | { 27 | return new ArgumentsNode(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/symfony/expression-language/Symfony/Component/ExpressionLanguage/Tests/ParsedExpressionTest.php: -------------------------------------------------------------------------------- 1 | assertEquals($expression, $unserializedExpression); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 2.1.0 5 | ----- 6 | 7 | * Yaml::parse() does not evaluate loaded files as PHP files by default 8 | anymore (call Yaml::enablePhpParsing() to get back the old behavior) 9 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Exception/DumpException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Yaml\Exception; 13 | 14 | /** 15 | * Exception class thrown when an error occurs during dumping. 16 | * 17 | * @author Fabien Potencier 18 | * 19 | * @api 20 | */ 21 | class DumpException extends RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Yaml\Exception; 13 | 14 | /** 15 | * Exception interface for all exceptions thrown by the component. 16 | * 17 | * @author Fabien Potencier 18 | * 19 | * @api 20 | */ 21 | interface ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Yaml\Exception; 13 | 14 | /** 15 | * Exception class thrown when an error occurs during parsing. 16 | * 17 | * @author Romain Neutron 18 | * 19 | * @api 20 | */ 21 | class RuntimeException extends \RuntimeException implements ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/README.md: -------------------------------------------------------------------------------- 1 | Yaml Component 2 | ============== 3 | 4 | YAML implements most of the YAML 1.2 specification. 5 | 6 | ```php 7 | use Symfony\Component\Yaml\Yaml; 8 | 9 | $array = Yaml::parse(file_get_contents(filename)); 10 | 11 | print Yaml::dump($array); 12 | ``` 13 | 14 | Resources 15 | --------- 16 | 17 | You can run the unit tests with the following command: 18 | 19 | $ cd path/to/Symfony/Component/Yaml/ 20 | $ composer install 21 | $ phpunit 22 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/YtsErrorTests.yml: -------------------------------------------------------------------------------- 1 | --- 2 | test: Missing value for hash item 3 | todo: true 4 | brief: | 5 | Third item in this hash doesn't have a value 6 | yaml: | 7 | okay: value 8 | also okay: ~ 9 | causes error because no value specified 10 | last key: value okay here too 11 | python-error: causes error because no value specified 12 | 13 | --- 14 | test: Not indenting enough 15 | brief: | 16 | There was a bug in PyYaml where it was off by one 17 | in the indentation check. It was allowing the YAML 18 | below. 19 | # This is actually valid YAML now. Someone should tell showell. 20 | yaml: | 21 | foo: 22 | firstline: 1 23 | secondline: 2 24 | php: | 25 | array('foo' => null, 'firstline' => 1, 'secondline' => 2) 26 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/index.yml: -------------------------------------------------------------------------------- 1 | - escapedCharacters 2 | - sfComments 3 | - sfCompact 4 | - sfTests 5 | - sfObjects 6 | - sfMergeKey 7 | - sfQuotes 8 | - YtsAnchorAlias 9 | - YtsBasicTests 10 | - YtsBlockMapping 11 | - YtsDocumentSeparator 12 | - YtsErrorTests 13 | - YtsFlowCollections 14 | - YtsFoldedScalars 15 | - YtsNullsAndEmpties 16 | - YtsSpecificationExamples 17 | - YtsTypeTransfers 18 | - unindentedCollections 19 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/sfObjects.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Objects 3 | brief: > 4 | Comments at the end of a line 5 | yaml: | 6 | ex1: "foo # bar" 7 | ex2: "foo # bar" # comment 8 | ex3: 'foo # bar' # comment 9 | ex4: foo # comment 10 | php: | 11 | array('ex1' => 'foo # bar', 'ex2' => 'foo # bar', 'ex3' => 'foo # bar', 'ex4' => 'foo') 12 | -------------------------------------------------------------------------------- /vendor/zendframework/zend-code/Zend/Code/Annotation/AnnotationInterface.php: -------------------------------------------------------------------------------- 1 | =5.3.23", 17 | "zendframework/zend-stdlib": "self.version" 18 | }, 19 | "extra": { 20 | "branch-alias": { 21 | "dev-master": "2.3-dev", 22 | "dev-develop": "2.4-dev" 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/zendframework/zend-stdlib/Zend/Stdlib/ArraySerializableInterface.php: -------------------------------------------------------------------------------- 1 | =5.3.0" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/zf1/zend-config/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zf1/zend-config", 3 | "description": "Zend Framework 1 Config package", 4 | "keywords": [ 5 | "framework", 6 | "zf1", 7 | "zend", 8 | "config" 9 | ], 10 | "homepage": "http://framework.zend.com/", 11 | "license": "BSD-3-Clause", 12 | "require": { 13 | "php": ">=5.2.11", 14 | "zf1/zend-exception": "self.version", 15 | "zf1/zend-xml": "self.version" 16 | }, 17 | "autoload": { 18 | "psr-0": { 19 | "Zend_Config": "library/" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/zf1/zend-exception/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zf1/zend-exception", 3 | "description": "Zend Framework 1 Exception package", 4 | "keywords": [ 5 | "framework", 6 | "zf1", 7 | "zend", 8 | "exception" 9 | ], 10 | "homepage": "http://framework.zend.com/", 11 | "license": "BSD-3-Clause", 12 | "require": { 13 | "php": ">=5.2.11" 14 | }, 15 | "autoload": { 16 | "psr-0": { 17 | "Zend_Exception": "library/" 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /vendor/zf1/zend-xml/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zf1/zend-xml", 3 | "description": "Zend Framework 1 Xml package", 4 | "keywords": [ 5 | "framework", 6 | "zf1", 7 | "zend", 8 | "xml" 9 | ], 10 | "homepage": "http://framework.zend.com/", 11 | "license": "BSD-3-Clause", 12 | "require": { 13 | "php": ">=5.2.11", 14 | "zf1/zend-exception": "self.version" 15 | }, 16 | "autoload": { 17 | "psr-0": { 18 | "Zend_Xml": "library/" 19 | } 20 | } 21 | } 22 | --------------------------------------------------------------------------------