├── docs ├── img │ ├── favicon.ico │ ├── loader.gif │ ├── icons │ │ ├── file.gif │ │ ├── ok.png │ │ ├── class.png │ │ ├── folder.gif │ │ ├── method.png │ │ ├── search.gif │ │ ├── constant.png │ │ ├── favicon.ico │ │ ├── file-php.png │ │ ├── function.png │ │ ├── interface.png │ │ ├── property.png │ │ ├── variable.png │ │ ├── arrow_down.png │ │ ├── arrow_right.png │ │ ├── icon-th-big.png │ │ ├── view_source.png │ │ ├── visibility_private.png │ │ ├── visibility_public.png │ │ ├── icon-folder-open-big.png │ │ ├── visibility_protected.png │ │ └── icon_template.svg │ ├── iviewer │ │ ├── grab.cur │ │ ├── hand.cur │ │ ├── iviewer.zoom_fit.png │ │ ├── iviewer.zoom_fit2.gif │ │ ├── iviewer.zoom_in.png │ │ ├── iviewer.zoom_in2.gif │ │ ├── iviewer.zoom_out.png │ │ ├── iviewer.zoom_out2.gif │ │ ├── iviewer.zoom_zero.png │ │ ├── iviewer.rotate_left.png │ │ ├── iviewer.zoom_zero2.gif │ │ └── iviewer.rotate_right.png │ ├── apple-touch-icon.png │ ├── glyphicons-halflings.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-114x114.png │ └── glyphicons-halflings-white.png ├── js │ ├── prettify │ │ ├── lang-go.js │ │ ├── lang-lua.js │ │ ├── lang-ml.js │ │ ├── lang-sql.js │ │ ├── lang-tex.js │ │ ├── lang-vb.js │ │ ├── lang-scala.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-apollo.js │ │ ├── lang-proto.js │ │ ├── lang-yaml.js │ │ ├── lang-hs.js │ │ ├── lang-lisp.js │ │ ├── lang-css.js │ │ ├── lang-n.js │ │ └── lang-clj.js │ ├── menu.js │ ├── jqplot │ │ ├── plugins │ │ │ ├── jqplot.ciParser.min.js │ │ │ ├── jqplot.mobile.min.js │ │ │ ├── jqplot.trendline.min.js │ │ │ ├── jqplot.canvasAxisLabelRenderer.min.js │ │ │ ├── jqplot.canvasAxisTickRenderer.min.js │ │ │ ├── jqplot.blockRenderer.min.js │ │ │ ├── jqplot.json2.min.js │ │ │ ├── jqplot.ohlcRenderer.min.js │ │ │ ├── jqplot.dragable.min.js │ │ │ ├── jqplot.pointLabels.min.js │ │ │ └── jqplot.enhancedLegendRenderer.min.js │ │ ├── MIT-LICENSE.txt │ │ ├── copyright.txt │ │ ├── jquery.jqplot.min.css │ │ └── README.txt │ ├── jquery.mousewheel.min.js │ ├── sidebar.js │ └── jquery.cookie.js ├── css │ ├── prettify.css │ └── jquery.iviewer.css ├── markers.html ├── graph_class.html ├── packages │ ├── Default.html │ └── global.html └── index.html ├── autoload.php ├── tests ├── files_for_tests │ ├── demo-hello-foxx-master.zip │ ├── demo-hello-foxx-upgrade.zip │ ├── import_file_header_values.txt │ ├── import_file_line_by_line.txt │ └── import_file_resultset.txt ├── phpunit-connection-close.xml ├── phpunit-connection-keep-alive.xml ├── bootstrap-connection-close.php ├── bootstrap-connection-keep-alive.php ├── travis │ └── setup_arangodb.sh ├── bootstrap.php ├── FoxxBasicTest.php ├── CustomEdgeClassTest.php └── QueryTest.php ├── .github ├── PULL_REQUEST_TEMPLATE.md └── CONTRIBUTING.md ├── .idea └── php.xml ├── .travis.yml ├── lib └── ArangoDBClient │ ├── Vertex.php │ ├── User.php │ ├── ConnectException.php │ ├── ClientException.php │ ├── UpdatePolicy.php │ ├── VertexHandler.php │ ├── SmartGraph.php │ ├── DocumentClassable.php │ ├── FailoverException.php │ ├── ValueValidator.php │ ├── QueryHandler.php │ ├── Exception.php │ ├── Multipart.php │ ├── StreamingTransactionCollection.php │ ├── Autoloader.php │ ├── View.php │ ├── TraceRequest.php │ ├── BindVars.php │ ├── Analyzer.php │ ├── UrlHelper.php │ ├── OptionHelper.php │ ├── DefaultValues.php │ ├── ServerException.php │ ├── QueryCacheHandler.php │ ├── AnalyzerHandler.php │ └── Edge.php ├── phpdoc.dist.xml ├── composer.json ├── examples ├── export.php ├── collection.php ├── bulk.php ├── http-test.php ├── streaming-aql-query.php ├── document.php ├── transaction-query.php ├── transaction.php ├── graph.php ├── edge.php ├── aql-query.php └── init.php └── .gitignore /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/loader.gif -------------------------------------------------------------------------------- /docs/img/icons/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/file.gif -------------------------------------------------------------------------------- /docs/img/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/ok.png -------------------------------------------------------------------------------- /docs/img/icons/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/class.png -------------------------------------------------------------------------------- /docs/img/icons/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/folder.gif -------------------------------------------------------------------------------- /docs/img/icons/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/method.png -------------------------------------------------------------------------------- /docs/img/icons/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/search.gif -------------------------------------------------------------------------------- /docs/img/iviewer/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/grab.cur -------------------------------------------------------------------------------- /docs/img/iviewer/hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/hand.cur -------------------------------------------------------------------------------- /docs/img/icons/constant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/constant.png -------------------------------------------------------------------------------- /docs/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/favicon.ico -------------------------------------------------------------------------------- /docs/img/icons/file-php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/file-php.png -------------------------------------------------------------------------------- /docs/img/icons/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/function.png -------------------------------------------------------------------------------- /docs/img/icons/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/interface.png -------------------------------------------------------------------------------- /docs/img/icons/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/property.png -------------------------------------------------------------------------------- /docs/img/icons/variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/variable.png -------------------------------------------------------------------------------- /docs/js/prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/js/prettify/lang-go.js -------------------------------------------------------------------------------- /docs/js/prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/js/prettify/lang-lua.js -------------------------------------------------------------------------------- /docs/js/prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/js/prettify/lang-ml.js -------------------------------------------------------------------------------- /docs/js/prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/js/prettify/lang-sql.js -------------------------------------------------------------------------------- /docs/js/prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/js/prettify/lang-tex.js -------------------------------------------------------------------------------- /docs/js/prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/js/prettify/lang-vb.js -------------------------------------------------------------------------------- /docs/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/img/icons/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/arrow_down.png -------------------------------------------------------------------------------- /docs/img/icons/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/arrow_right.png -------------------------------------------------------------------------------- /docs/img/icons/icon-th-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/icon-th-big.png -------------------------------------------------------------------------------- /docs/img/icons/view_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/view_source.png -------------------------------------------------------------------------------- /docs/js/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/js/prettify/lang-scala.js -------------------------------------------------------------------------------- /docs/js/prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/js/prettify/lang-vhdl.js -------------------------------------------------------------------------------- /docs/js/prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/js/prettify/lang-wiki.js -------------------------------------------------------------------------------- /docs/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /docs/js/prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/js/prettify/lang-apollo.js -------------------------------------------------------------------------------- /docs/img/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /docs/img/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /docs/img/icons/visibility_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/visibility_private.png -------------------------------------------------------------------------------- /docs/img/icons/visibility_public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/visibility_public.png -------------------------------------------------------------------------------- /docs/img/iviewer/iviewer.zoom_fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/iviewer.zoom_fit.png -------------------------------------------------------------------------------- /docs/img/iviewer/iviewer.zoom_fit2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/iviewer.zoom_fit2.gif -------------------------------------------------------------------------------- /docs/img/iviewer/iviewer.zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/iviewer.zoom_in.png -------------------------------------------------------------------------------- /docs/img/iviewer/iviewer.zoom_in2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/iviewer.zoom_in2.gif -------------------------------------------------------------------------------- /docs/img/iviewer/iviewer.zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/iviewer.zoom_out.png -------------------------------------------------------------------------------- /docs/img/iviewer/iviewer.zoom_out2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/iviewer.zoom_out2.gif -------------------------------------------------------------------------------- /docs/img/iviewer/iviewer.zoom_zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/iviewer.zoom_zero.png -------------------------------------------------------------------------------- /docs/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /docs/img/icons/icon-folder-open-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/icon-folder-open-big.png -------------------------------------------------------------------------------- /docs/img/icons/visibility_protected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/icons/visibility_protected.png -------------------------------------------------------------------------------- /docs/img/iviewer/iviewer.rotate_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/iviewer.rotate_left.png -------------------------------------------------------------------------------- /docs/img/iviewer/iviewer.zoom_zero2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/iviewer.zoom_zero2.gif -------------------------------------------------------------------------------- /docs/img/iviewer/iviewer.rotate_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/arangodb-php/HEAD/docs/img/iviewer/iviewer.rotate_right.png -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/js/prettify/lang-proto.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); 2 | -------------------------------------------------------------------------------- /docs/js/prettify/lang-yaml.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: required 2 | language: php 3 | 4 | services: 5 | - docker 6 | 7 | matrix: 8 | fast_finish: true 9 | include: 10 | - php: '7.4' 11 | - php: '8.0' 12 | - php: '8.1' 13 | 14 | before_script: 15 | - chmod 777 ./tests/travis/setup_arangodb.sh 16 | - ./tests/travis/setup_arangodb.sh 17 | 18 | script: 19 | - ARANGO_ROOT_PASSWORD="test" ./phpunit --configuration ./tests/phpunit-connection-close.xml 20 | - ARANGO_ROOT_PASSWORD="test" ./phpunit --configuration ./tests/phpunit-connection-keep-alive.xml 21 | -------------------------------------------------------------------------------- /docs/js/prettify/lang-hs.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n \r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, 2 | null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); 3 | -------------------------------------------------------------------------------- /lib/ArangoDBClient/Vertex.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ../lib 6 | 7 | 8 | 9 | 10 | . 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tests/phpunit-connection-keep-alive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ../lib 6 | 7 | 8 | 9 | 10 | . 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/js/prettify/lang-lisp.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \xa0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], 3 | ["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","scm"]); 4 | -------------------------------------------------------------------------------- /tests/bootstrap-connection-close.php: -------------------------------------------------------------------------------- 1 | 'Close' 22 | // can use either 'Close' (one-time connections) or 'Keep-Alive' (re-used connections) 23 | ]); 24 | } 25 | -------------------------------------------------------------------------------- /tests/bootstrap-connection-keep-alive.php: -------------------------------------------------------------------------------- 1 | 'Keep-Alive' 22 | // can use either 'Close' (one-time connections) or 'Keep-Alive' (re-used connections) 23 | ]); 24 | } 25 | -------------------------------------------------------------------------------- /docs/js/menu.js: -------------------------------------------------------------------------------- 1 | var timeout = 500; 2 | var closetimer = 0; 3 | var ddmenuitem = 0; 4 | 5 | function menu_open() { 6 | menu_canceltimer(); 7 | menu_close(); 8 | ddmenuitem = $(this).find('ul').css('visibility', 'visible'); 9 | } 10 | 11 | function menu_close() { 12 | if (ddmenuitem) ddmenuitem.css('visibility', 'hidden'); 13 | } 14 | 15 | function menu_timer() { 16 | closetimer = window.setTimeout(menu_close, timeout); 17 | } 18 | 19 | function menu_canceltimer() { 20 | if (closetimer) { 21 | window.clearTimeout(closetimer); 22 | closetimer = null; 23 | } 24 | } 25 | 26 | $(document).ready(function() { 27 | $('#file-nav > li').bind('mouseover', menu_open); 28 | $('#file-nav > li').bind('mouseout', menu_timer); 29 | }); 30 | 31 | document.onclick = menu_close; -------------------------------------------------------------------------------- /docs/js/jqplot/plugins/jqplot.ciParser.min.js: -------------------------------------------------------------------------------- 1 | /* jqPlot 1.0.8r1250 | (c) 2009-2013 Chris Leonello | jplot.com 2 | jsDate | (c) 2010-2013 Chris Leonello 3 | */(function(a){a.jqplot.ciParser=function(g,l){var m=[],o,n,h,f,e,c;if(typeof(g)=="string"){g=a.jqplot.JSON.parse(g,d)}else{if(typeof(g)=="object"){for(e in g){for(h=0;h=0){i=/^\/Date\((-?[0-9]+)\)\/$/.exec(k);if(i){return parseInt(i[1],10)}}return k}}for(var b in g){o=[];n=g[b];switch(b){case"PriceTicks":for(h=0;h)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); 3 | -------------------------------------------------------------------------------- /phpdoc.dist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ArangoDB PHP client API 4 | 5 | docs 6 | 7 | TODO 8 | FIXME 9 | 10 | 11 | php 12 | 13 | 14 | 15 | 16 | docs 17 | 18 | 19 | warn 20 | 21 | {APP_ROOT}/data/log/{DATE}.log 22 | {APP_ROOT}/data/log/{DATE}.errors.log 23 | 24 | 25 | 26 |