composer.lock 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "5d9e73f7f63897aa224d4878c5fb0df3",
  8. "packages": [
  9. {
  10. "name": "antoligy/dom-string-iterators",
  11. "version": "v1.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/antoligy/dom-string-iterators.git",
  15. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/antoligy/dom-string-iterators/zipball/fae88f66e1970d68c5585fc42db44f1217bf74e6",
  20. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "": "src/"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "CC0-1.0"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Alex Wilson",
  39. "email": "a@ax.gy"
  40. },
  41. {
  42. "name": "Kornel Lesinski",
  43. "email": "pornel@pornel.net"
  44. },
  45. {
  46. "name": "Patrick Galbraith",
  47. "email": "patrick.j.galbraith@gmail.com"
  48. }
  49. ],
  50. "description": "Composer package for DOMWordsIterator and DOMLettersIterator",
  51. "time": "2018-02-03T16:01:11+00:00"
  52. },
  53. {
  54. "name": "composer/ca-bundle",
  55. "version": "1.1.1",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/composer/ca-bundle.git",
  59. "reference": "d2c0a83b7533d6912e8d516756ebd34f893e9169"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/d2c0a83b7533d6912e8d516756ebd34f893e9169",
  64. "reference": "d2c0a83b7533d6912e8d516756ebd34f893e9169",
  65. "shasum": ""
  66. },
  67. "require": {
  68. "ext-openssl": "*",
  69. "ext-pcre": "*",
  70. "php": "^5.3.2 || ^7.0"
  71. },
  72. "require-dev": {
  73. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  74. "psr/log": "^1.0",
  75. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  76. },
  77. "type": "library",
  78. "extra": {
  79. "branch-alias": {
  80. "dev-master": "1.x-dev"
  81. }
  82. },
  83. "autoload": {
  84. "psr-4": {
  85. "Composer\\CaBundle\\": "src"
  86. }
  87. },
  88. "notification-url": "https://packagist.org/downloads/",
  89. "license": [
  90. "MIT"
  91. ],
  92. "authors": [
  93. {
  94. "name": "Jordi Boggiano",
  95. "email": "j.boggiano@seld.be",
  96. "homepage": "http://seld.be"
  97. }
  98. ],
  99. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  100. "keywords": [
  101. "cabundle",
  102. "cacert",
  103. "certificate",
  104. "ssl",
  105. "tls"
  106. ],
  107. "time": "2018-03-29T19:57:20+00:00"
  108. },
  109. {
  110. "name": "doctrine/cache",
  111. "version": "v1.6.2",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/doctrine/cache.git",
  115. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  120. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  121. "shasum": ""
  122. },
  123. "require": {
  124. "php": "~5.5|~7.0"
  125. },
  126. "conflict": {
  127. "doctrine/common": ">2.2,<2.4"
  128. },
  129. "require-dev": {
  130. "phpunit/phpunit": "~4.8|~5.0",
  131. "predis/predis": "~1.0",
  132. "satooshi/php-coveralls": "~0.6"
  133. },
  134. "type": "library",
  135. "extra": {
  136. "branch-alias": {
  137. "dev-master": "1.6.x-dev"
  138. }
  139. },
  140. "autoload": {
  141. "psr-4": {
  142. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  143. }
  144. },
  145. "notification-url": "https://packagist.org/downloads/",
  146. "license": [
  147. "MIT"
  148. ],
  149. "authors": [
  150. {
  151. "name": "Roman Borschel",
  152. "email": "roman@code-factory.org"
  153. },
  154. {
  155. "name": "Benjamin Eberlei",
  156. "email": "kontakt@beberlei.de"
  157. },
  158. {
  159. "name": "Guilherme Blanco",
  160. "email": "guilhermeblanco@gmail.com"
  161. },
  162. {
  163. "name": "Jonathan Wage",
  164. "email": "jonwage@gmail.com"
  165. },
  166. {
  167. "name": "Johannes Schmitt",
  168. "email": "schmittjoh@gmail.com"
  169. }
  170. ],
  171. "description": "Caching library offering an object-oriented API for many cache backends",
  172. "homepage": "http://www.doctrine-project.org",
  173. "keywords": [
  174. "cache",
  175. "caching"
  176. ],
  177. "time": "2017-07-22T12:49:21+00:00"
  178. },
  179. {
  180. "name": "doctrine/collections",
  181. "version": "v1.3.0",
  182. "source": {
  183. "type": "git",
  184. "url": "https://github.com/doctrine/collections.git",
  185. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
  186. },
  187. "dist": {
  188. "type": "zip",
  189. "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  190. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  191. "shasum": ""
  192. },
  193. "require": {
  194. "php": ">=5.3.2"
  195. },
  196. "require-dev": {
  197. "phpunit/phpunit": "~4.0"
  198. },
  199. "type": "library",
  200. "extra": {
  201. "branch-alias": {
  202. "dev-master": "1.2.x-dev"
  203. }
  204. },
  205. "autoload": {
  206. "psr-0": {
  207. "Doctrine\\Common\\Collections\\": "lib/"
  208. }
  209. },
  210. "notification-url": "https://packagist.org/downloads/",
  211. "license": [
  212. "MIT"
  213. ],
  214. "authors": [
  215. {
  216. "name": "Roman Borschel",
  217. "email": "roman@code-factory.org"
  218. },
  219. {
  220. "name": "Benjamin Eberlei",
  221. "email": "kontakt@beberlei.de"
  222. },
  223. {
  224. "name": "Guilherme Blanco",
  225. "email": "guilhermeblanco@gmail.com"
  226. },
  227. {
  228. "name": "Jonathan Wage",
  229. "email": "jonwage@gmail.com"
  230. },
  231. {
  232. "name": "Johannes Schmitt",
  233. "email": "schmittjoh@gmail.com"
  234. }
  235. ],
  236. "description": "Collections Abstraction library",
  237. "homepage": "http://www.doctrine-project.org",
  238. "keywords": [
  239. "array",
  240. "collections",
  241. "iterator"
  242. ],
  243. "time": "2015-04-14T22:21:58+00:00"
  244. },
  245. {
  246. "name": "donatj/phpuseragentparser",
  247. "version": "v0.10.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/donatj/PhpUserAgent.git",
  251. "reference": "9de58cc2a3e986bfee7f4cea3365c830b765cf65"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/9de58cc2a3e986bfee7f4cea3365c830b765cf65",
  256. "reference": "9de58cc2a3e986bfee7f4cea3365c830b765cf65",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "php": ">=5.3.0"
  261. },
  262. "require-dev": {
  263. "camspiers/json-pretty": "0.1.*",
  264. "donatj/drop": "*",
  265. "phpunit/phpunit": "~4.8"
  266. },
  267. "type": "library",
  268. "autoload": {
  269. "files": [
  270. "Source/UserAgentParser.php"
  271. ]
  272. },
  273. "notification-url": "https://packagist.org/downloads/",
  274. "license": [
  275. "MIT"
  276. ],
  277. "authors": [
  278. {
  279. "name": "Jesse G. Donat",
  280. "email": "donatj@gmail.com",
  281. "homepage": "http://donatstudios.com",
  282. "role": "Developer"
  283. }
  284. ],
  285. "description": "Simple, streamlined PHP user-agent parser",
  286. "homepage": "http://donatstudios.com/PHP-Parser-HTTP_USER_AGENT",
  287. "keywords": [
  288. "browser",
  289. "browser detection",
  290. "parser",
  291. "user agent",
  292. "useragent"
  293. ],
  294. "time": "2018-06-21T15:54:46+00:00"
  295. },
  296. {
  297. "name": "erusev/parsedown",
  298. "version": "1.6.4",
  299. "source": {
  300. "type": "git",
  301. "url": "https://github.com/erusev/parsedown.git",
  302. "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548"
  303. },
  304. "dist": {
  305. "type": "zip",
  306. "url": "https://api.github.com/repos/erusev/parsedown/zipball/fbe3fe878f4fe69048bb8a52783a09802004f548",
  307. "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548",
  308. "shasum": ""
  309. },
  310. "require": {
  311. "php": ">=5.3.0"
  312. },
  313. "require-dev": {
  314. "phpunit/phpunit": "^4.8.35"
  315. },
  316. "type": "library",
  317. "autoload": {
  318. "psr-0": {
  319. "Parsedown": ""
  320. }
  321. },
  322. "notification-url": "https://packagist.org/downloads/",
  323. "license": [
  324. "MIT"
  325. ],
  326. "authors": [
  327. {
  328. "name": "Emanuil Rusev",
  329. "email": "hello@erusev.com",
  330. "homepage": "http://erusev.com"
  331. }
  332. ],
  333. "description": "Parser for Markdown.",
  334. "homepage": "http://parsedown.org",
  335. "keywords": [
  336. "markdown",
  337. "parser"
  338. ],
  339. "time": "2017-11-14T20:44:03+00:00"
  340. },
  341. {
  342. "name": "erusev/parsedown-extra",
  343. "version": "0.7.1",
  344. "source": {
  345. "type": "git",
  346. "url": "https://github.com/erusev/parsedown-extra.git",
  347. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c"
  348. },
  349. "dist": {
  350. "type": "zip",
  351. "url": "https://api.github.com/repos/erusev/parsedown-extra/zipball/0db5cce7354e4b76f155d092ab5eb3981c21258c",
  352. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c",
  353. "shasum": ""
  354. },
  355. "require": {
  356. "erusev/parsedown": "~1.4"
  357. },
  358. "type": "library",
  359. "autoload": {
  360. "psr-0": {
  361. "ParsedownExtra": ""
  362. }
  363. },
  364. "notification-url": "https://packagist.org/downloads/",
  365. "license": [
  366. "MIT"
  367. ],
  368. "authors": [
  369. {
  370. "name": "Emanuil Rusev",
  371. "email": "hello@erusev.com",
  372. "homepage": "http://erusev.com"
  373. }
  374. ],
  375. "description": "An extension of Parsedown that adds support for Markdown Extra.",
  376. "homepage": "https://github.com/erusev/parsedown-extra",
  377. "keywords": [
  378. "markdown",
  379. "markdown extra",
  380. "parsedown",
  381. "parser"
  382. ],
  383. "time": "2015-11-01T10:19:22+00:00"
  384. },
  385. {
  386. "name": "filp/whoops",
  387. "version": "2.2.0",
  388. "source": {
  389. "type": "git",
  390. "url": "https://github.com/filp/whoops.git",
  391. "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a"
  392. },
  393. "dist": {
  394. "type": "zip",
  395. "url": "https://api.github.com/repos/filp/whoops/zipball/181c4502d8f34db7aed7bfe88d4f87875b8e947a",
  396. "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a",
  397. "shasum": ""
  398. },
  399. "require": {
  400. "php": "^5.5.9 || ^7.0",
  401. "psr/log": "^1.0.1"
  402. },
  403. "require-dev": {
  404. "mockery/mockery": "^0.9 || ^1.0",
  405. "phpunit/phpunit": "^4.8.35 || ^5.7",
  406. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  407. },
  408. "suggest": {
  409. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  410. "whoops/soap": "Formats errors as SOAP responses"
  411. },
  412. "type": "library",
  413. "extra": {
  414. "branch-alias": {
  415. "dev-master": "2.1-dev"
  416. }
  417. },
  418. "autoload": {
  419. "psr-4": {
  420. "Whoops\\": "src/Whoops/"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "Filipe Dobreira",
  430. "homepage": "https://github.com/filp",
  431. "role": "Developer"
  432. }
  433. ],
  434. "description": "php error handling for cool kids",
  435. "homepage": "https://filp.github.io/whoops/",
  436. "keywords": [
  437. "error",
  438. "exception",
  439. "handling",
  440. "library",
  441. "throwable",
  442. "whoops"
  443. ],
  444. "time": "2018-03-03T17:56:25+00:00"
  445. },
  446. {
  447. "name": "gregwar/cache",
  448. "version": "v1.0.12",
  449. "target-dir": "Gregwar/Cache",
  450. "source": {
  451. "type": "git",
  452. "url": "https://github.com/Gregwar/Cache.git",
  453. "reference": "305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3"
  454. },
  455. "dist": {
  456. "type": "zip",
  457. "url": "https://api.github.com/repos/Gregwar/Cache/zipball/305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3",
  458. "reference": "305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3",
  459. "shasum": ""
  460. },
  461. "require": {
  462. "php": ">=5.3"
  463. },
  464. "type": "library",
  465. "autoload": {
  466. "psr-0": {
  467. "Gregwar\\Cache": ""
  468. }
  469. },
  470. "notification-url": "https://packagist.org/downloads/",
  471. "license": [
  472. "MIT"
  473. ],
  474. "authors": [
  475. {
  476. "name": "Gregwar",
  477. "email": "g.passault@gmail.com"
  478. }
  479. ],
  480. "description": "A lightweight file-system cache system",
  481. "keywords": [
  482. "cache",
  483. "caching",
  484. "file-system",
  485. "system"
  486. ],
  487. "time": "2016-09-23T08:16:04+00:00"
  488. },
  489. {
  490. "name": "gregwar/image",
  491. "version": "v2.0.22",
  492. "target-dir": "Gregwar/Image",
  493. "source": {
  494. "type": "git",
  495. "url": "https://github.com/Gregwar/Image.git",
  496. "reference": "c506d57d7fb5e67961d4eea6540ae8e23dffd406"
  497. },
  498. "dist": {
  499. "type": "zip",
  500. "url": "https://api.github.com/repos/Gregwar/Image/zipball/c506d57d7fb5e67961d4eea6540ae8e23dffd406",
  501. "reference": "c506d57d7fb5e67961d4eea6540ae8e23dffd406",
  502. "shasum": ""
  503. },
  504. "require": {
  505. "ext-gd": "*",
  506. "gregwar/cache": "^1.0.6",
  507. "php": "^5.3 || ^7.0"
  508. },
  509. "require-dev": {
  510. "sllh/php-cs-fixer-styleci-bridge": "~1.0",
  511. "symfony/phpunit-bridge": "^2.7.4 || ^3.0"
  512. },
  513. "suggest": {
  514. "behat/transliterator": "Transliterator provides ability to set non-latin1 pretty names"
  515. },
  516. "type": "library",
  517. "autoload": {
  518. "psr-0": {
  519. "Gregwar\\Image": ""
  520. }
  521. },
  522. "notification-url": "https://packagist.org/downloads/",
  523. "license": [
  524. "MIT"
  525. ],
  526. "authors": [
  527. {
  528. "name": "Grégoire Passault",
  529. "email": "g.passault@gmail.com",
  530. "homepage": "http://www.gregwar.com/"
  531. }
  532. ],
  533. "description": "Image handling",
  534. "homepage": "https://github.com/Gregwar/Image",
  535. "keywords": [
  536. "gd",
  537. "image"
  538. ],
  539. "time": "2018-01-31T17:40:17+00:00"
  540. },
  541. {
  542. "name": "guzzlehttp/psr7",
  543. "version": "1.4.2",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/guzzle/psr7.git",
  547. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  552. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "php": ">=5.4.0",
  557. "psr/http-message": "~1.0"
  558. },
  559. "provide": {
  560. "psr/http-message-implementation": "1.0"
  561. },
  562. "require-dev": {
  563. "phpunit/phpunit": "~4.0"
  564. },
  565. "type": "library",
  566. "extra": {
  567. "branch-alias": {
  568. "dev-master": "1.4-dev"
  569. }
  570. },
  571. "autoload": {
  572. "psr-4": {
  573. "GuzzleHttp\\Psr7\\": "src/"
  574. },
  575. "files": [
  576. "src/functions_include.php"
  577. ]
  578. },
  579. "notification-url": "https://packagist.org/downloads/",
  580. "license": [
  581. "MIT"
  582. ],
  583. "authors": [
  584. {
  585. "name": "Michael Dowling",
  586. "email": "mtdowling@gmail.com",
  587. "homepage": "https://github.com/mtdowling"
  588. },
  589. {
  590. "name": "Tobias Schultze",
  591. "homepage": "https://github.com/Tobion"
  592. }
  593. ],
  594. "description": "PSR-7 message implementation that also provides common utility methods",
  595. "keywords": [
  596. "http",
  597. "message",
  598. "request",
  599. "response",
  600. "stream",
  601. "uri",
  602. "url"
  603. ],
  604. "time": "2017-03-20T17:10:46+00:00"
  605. },
  606. {
  607. "name": "league/climate",
  608. "version": "3.2.4",
  609. "source": {
  610. "type": "git",
  611. "url": "https://github.com/thephpleague/climate.git",
  612. "reference": "ca70f67f7739cca823eba0ad98f8130bca226bf0"
  613. },
  614. "dist": {
  615. "type": "zip",
  616. "url": "https://api.github.com/repos/thephpleague/climate/zipball/ca70f67f7739cca823eba0ad98f8130bca226bf0",
  617. "reference": "ca70f67f7739cca823eba0ad98f8130bca226bf0",
  618. "shasum": ""
  619. },
  620. "require": {
  621. "php": ">=5.4.0",
  622. "seld/cli-prompt": "~1.0"
  623. },
  624. "require-dev": {
  625. "mikey179/vfsstream": "~1.4",
  626. "mockery/mockery": "~0.9",
  627. "phpunit/phpunit": "~4.6"
  628. },
  629. "type": "library",
  630. "autoload": {
  631. "psr-4": {
  632. "League\\CLImate\\": "src/"
  633. }
  634. },
  635. "notification-url": "https://packagist.org/downloads/",
  636. "license": [
  637. "MIT"
  638. ],
  639. "authors": [
  640. {
  641. "name": "Joe Tannenbaum",
  642. "email": "hey@joe.codes",
  643. "homepage": "http://joe.codes/",
  644. "role": "Developer"
  645. }
  646. ],
  647. "description": "PHP's best friend for the terminal. CLImate allows you to easily output colored text, special formats, and more.",
  648. "keywords": [
  649. "cli",
  650. "colors",
  651. "command",
  652. "php",
  653. "terminal"
  654. ],
  655. "time": "2016-10-30T22:18:25+00:00"
  656. },
  657. {
  658. "name": "matthiasmullie/minify",
  659. "version": "1.3.60",
  660. "source": {
  661. "type": "git",
  662. "url": "https://github.com/matthiasmullie/minify.git",
  663. "reference": "ab7fea80ce5ce6549baaf272bc8bd926a7e08f90"
  664. },
  665. "dist": {
  666. "type": "zip",
  667. "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/ab7fea80ce5ce6549baaf272bc8bd926a7e08f90",
  668. "reference": "ab7fea80ce5ce6549baaf272bc8bd926a7e08f90",
  669. "shasum": ""
  670. },
  671. "require": {
  672. "ext-pcre": "*",
  673. "matthiasmullie/path-converter": "~1.1",
  674. "php": ">=5.3.0"
  675. },
  676. "require-dev": {
  677. "friendsofphp/php-cs-fixer": "~2.0",
  678. "matthiasmullie/scrapbook": "~1.0",
  679. "phpunit/phpunit": "~4.8"
  680. },
  681. "suggest": {
  682. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  683. },
  684. "bin": [
  685. "bin/minifycss",
  686. "bin/minifyjs"
  687. ],
  688. "type": "library",
  689. "autoload": {
  690. "psr-4": {
  691. "MatthiasMullie\\Minify\\": "src/"
  692. }
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "MIT"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Matthias Mullie",
  701. "email": "minify@mullie.eu",
  702. "homepage": "http://www.mullie.eu",
  703. "role": "Developer"
  704. }
  705. ],
  706. "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
  707. "homepage": "http://www.minifier.org",
  708. "keywords": [
  709. "JS",
  710. "css",
  711. "javascript",
  712. "minifier",
  713. "minify"
  714. ],
  715. "time": "2018-04-18T08:50:35+00:00"
  716. },
  717. {
  718. "name": "matthiasmullie/path-converter",
  719. "version": "1.1.1",
  720. "source": {
  721. "type": "git",
  722. "url": "https://github.com/matthiasmullie/path-converter.git",
  723. "reference": "3082a6838be02b930239a97d38b5c9da4d693aca"
  724. },
  725. "dist": {
  726. "type": "zip",
  727. "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/3082a6838be02b930239a97d38b5c9da4d693aca",
  728. "reference": "3082a6838be02b930239a97d38b5c9da4d693aca",
  729. "shasum": ""
  730. },
  731. "require": {
  732. "ext-pcre": "*",
  733. "php": ">=5.3.0"
  734. },
  735. "require-dev": {
  736. "phpunit/phpunit": "~4.8"
  737. },
  738. "type": "library",
  739. "autoload": {
  740. "psr-4": {
  741. "MatthiasMullie\\PathConverter\\": "src/"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Matthias Mullie",
  751. "email": "pathconverter@mullie.eu",
  752. "homepage": "http://www.mullie.eu",
  753. "role": "Developer"
  754. }
  755. ],
  756. "description": "Relative path converter",
  757. "homepage": "http://github.com/matthiasmullie/path-converter",
  758. "keywords": [
  759. "converter",
  760. "path",
  761. "paths",
  762. "relative"
  763. ],
  764. "time": "2018-02-02T11:30:10+00:00"
  765. },
  766. {
  767. "name": "maximebf/debugbar",
  768. "version": "v1.15.0",
  769. "source": {
  770. "type": "git",
  771. "url": "https://github.com/maximebf/php-debugbar.git",
  772. "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07"
  773. },
  774. "dist": {
  775. "type": "zip",
  776. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30e7d60937ee5f1320975ca9bc7bcdd44d500f07",
  777. "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07",
  778. "shasum": ""
  779. },
  780. "require": {
  781. "php": ">=5.3.0",
  782. "psr/log": "^1.0",
  783. "symfony/var-dumper": "^2.6|^3.0|^4.0"
  784. },
  785. "require-dev": {
  786. "phpunit/phpunit": "^4.0|^5.0"
  787. },
  788. "suggest": {
  789. "kriswallsmith/assetic": "The best way to manage assets",
  790. "monolog/monolog": "Log using Monolog",
  791. "predis/predis": "Redis storage"
  792. },
  793. "type": "library",
  794. "extra": {
  795. "branch-alias": {
  796. "dev-master": "1.14-dev"
  797. }
  798. },
  799. "autoload": {
  800. "psr-4": {
  801. "DebugBar\\": "src/DebugBar/"
  802. }
  803. },
  804. "notification-url": "https://packagist.org/downloads/",
  805. "license": [
  806. "MIT"
  807. ],
  808. "authors": [
  809. {
  810. "name": "Maxime Bouroumeau-Fuseau",
  811. "email": "maxime.bouroumeau@gmail.com",
  812. "homepage": "http://maximebf.com"
  813. },
  814. {
  815. "name": "Barry vd. Heuvel",
  816. "email": "barryvdh@gmail.com"
  817. }
  818. ],
  819. "description": "Debug bar in the browser for php application",
  820. "homepage": "https://github.com/maximebf/php-debugbar",
  821. "keywords": [
  822. "debug",
  823. "debugbar"
  824. ],
  825. "time": "2017-12-15T11:13:46+00:00"
  826. },
  827. {
  828. "name": "miljar/php-exif",
  829. "version": "v0.6.4",
  830. "source": {
  831. "type": "git",
  832. "url": "https://github.com/PHPExif/php-exif.git",
  833. "reference": "361c15b8bc7d5ef26a9492fe537f09c920fe6511"
  834. },
  835. "dist": {
  836. "type": "zip",
  837. "url": "https://api.github.com/repos/PHPExif/php-exif/zipball/361c15b8bc7d5ef26a9492fe537f09c920fe6511",
  838. "reference": "361c15b8bc7d5ef26a9492fe537f09c920fe6511",
  839. "shasum": ""
  840. },
  841. "require": {
  842. "php": ">=5.3.0"
  843. },
  844. "require-dev": {
  845. "phpmd/phpmd": "~2.2",
  846. "phpunit/phpunit": "3.7.*",
  847. "satooshi/php-coveralls": "~0.6",
  848. "sebastian/phpcpd": "1.4.*@stable",
  849. "squizlabs/php_codesniffer": "1.4.*@stable"
  850. },
  851. "suggest": {
  852. "ext-exif": "Use exif PHP extension as adapter",
  853. "lib-exiftool": "Use perl lib exiftool as adapter"
  854. },
  855. "type": "library",
  856. "autoload": {
  857. "psr-0": {
  858. "PHPExif": "lib/"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "authors": [
  866. {
  867. "name": "Tom Van Herreweghe",
  868. "homepage": "http://theanalogguy.be",
  869. "role": "Developer"
  870. }
  871. ],
  872. "description": "Object-Oriented EXIF parsing",
  873. "keywords": [
  874. "IPTC",
  875. "exif",
  876. "exiftool",
  877. "jpeg",
  878. "tiff"
  879. ],
  880. "time": "2018-03-27T10:41:55+00:00"
  881. },
  882. {
  883. "name": "monolog/monolog",
  884. "version": "1.23.0",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/Seldaek/monolog.git",
  888. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  893. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  894. "shasum": ""
  895. },
  896. "require": {
  897. "php": ">=5.3.0",
  898. "psr/log": "~1.0"
  899. },
  900. "provide": {
  901. "psr/log-implementation": "1.0.0"
  902. },
  903. "require-dev": {
  904. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  905. "doctrine/couchdb": "~1.0@dev",
  906. "graylog2/gelf-php": "~1.0",
  907. "jakub-onderka/php-parallel-lint": "0.9",
  908. "php-amqplib/php-amqplib": "~2.4",
  909. "php-console/php-console": "^3.1.3",
  910. "phpunit/phpunit": "~4.5",
  911. "phpunit/phpunit-mock-objects": "2.3.0",
  912. "ruflin/elastica": ">=0.90 <3.0",
  913. "sentry/sentry": "^0.13",
  914. "swiftmailer/swiftmailer": "^5.3|^6.0"
  915. },
  916. "suggest": {
  917. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  918. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  919. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  920. "ext-mongo": "Allow sending log messages to a MongoDB server",
  921. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  922. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  923. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  924. "php-console/php-console": "Allow sending log messages to Google Chrome",
  925. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  926. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  927. "sentry/sentry": "Allow sending log messages to a Sentry server"
  928. },
  929. "type": "library",
  930. "extra": {
  931. "branch-alias": {
  932. "dev-master": "2.0.x-dev"
  933. }
  934. },
  935. "autoload": {
  936. "psr-4": {
  937. "Monolog\\": "src/Monolog"
  938. }
  939. },
  940. "notification-url": "https://packagist.org/downloads/",
  941. "license": [
  942. "MIT"
  943. ],
  944. "authors": [
  945. {
  946. "name": "Jordi Boggiano",
  947. "email": "j.boggiano@seld.be",
  948. "homepage": "http://seld.be"
  949. }
  950. ],
  951. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  952. "homepage": "http://github.com/Seldaek/monolog",
  953. "keywords": [
  954. "log",
  955. "logging",
  956. "psr-3"
  957. ],
  958. "time": "2017-06-19T01:22:40+00:00"
  959. },
  960. {
  961. "name": "pimple/pimple",
  962. "version": "v3.2.3",
  963. "source": {
  964. "type": "git",
  965. "url": "https://github.com/silexphp/Pimple.git",
  966. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  967. },
  968. "dist": {
  969. "type": "zip",
  970. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  971. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  972. "shasum": ""
  973. },
  974. "require": {
  975. "php": ">=5.3.0",
  976. "psr/container": "^1.0"
  977. },
  978. "require-dev": {
  979. "symfony/phpunit-bridge": "^3.2"
  980. },
  981. "type": "library",
  982. "extra": {
  983. "branch-alias": {
  984. "dev-master": "3.2.x-dev"
  985. }
  986. },
  987. "autoload": {
  988. "psr-0": {
  989. "Pimple": "src/"
  990. }
  991. },
  992. "notification-url": "https://packagist.org/downloads/",
  993. "license": [
  994. "MIT"
  995. ],
  996. "authors": [
  997. {
  998. "name": "Fabien Potencier",
  999. "email": "fabien@symfony.com"
  1000. }
  1001. ],
  1002. "description": "Pimple, a simple Dependency Injection Container",
  1003. "homepage": "http://pimple.sensiolabs.org",
  1004. "keywords": [
  1005. "container",
  1006. "dependency injection"
  1007. ],
  1008. "time": "2018-01-21T07:42:36+00:00"
  1009. },
  1010. {
  1011. "name": "psr/container",
  1012. "version": "1.0.0",
  1013. "source": {
  1014. "type": "git",
  1015. "url": "https://github.com/php-fig/container.git",
  1016. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1017. },
  1018. "dist": {
  1019. "type": "zip",
  1020. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1021. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1022. "shasum": ""
  1023. },
  1024. "require": {
  1025. "php": ">=5.3.0"
  1026. },
  1027. "type": "library",
  1028. "extra": {
  1029. "branch-alias": {
  1030. "dev-master": "1.0.x-dev"
  1031. }
  1032. },
  1033. "autoload": {
  1034. "psr-4": {
  1035. "Psr\\Container\\": "src/"
  1036. }
  1037. },
  1038. "notification-url": "https://packagist.org/downloads/",
  1039. "license": [
  1040. "MIT"
  1041. ],
  1042. "authors": [
  1043. {
  1044. "name": "PHP-FIG",
  1045. "homepage": "http://www.php-fig.org/"
  1046. }
  1047. ],
  1048. "description": "Common Container Interface (PHP FIG PSR-11)",
  1049. "homepage": "https://github.com/php-fig/container",
  1050. "keywords": [
  1051. "PSR-11",
  1052. "container",
  1053. "container-interface",
  1054. "container-interop",
  1055. "psr"
  1056. ],
  1057. "time": "2017-02-14T16:28:37+00:00"
  1058. },
  1059. {
  1060. "name": "psr/http-message",
  1061. "version": "1.0.1",
  1062. "source": {
  1063. "type": "git",
  1064. "url": "https://github.com/php-fig/http-message.git",
  1065. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1066. },
  1067. "dist": {
  1068. "type": "zip",
  1069. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1070. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1071. "shasum": ""
  1072. },
  1073. "require": {
  1074. "php": ">=5.3.0"
  1075. },
  1076. "type": "library",
  1077. "extra": {
  1078. "branch-alias": {
  1079. "dev-master": "1.0.x-dev"
  1080. }
  1081. },
  1082. "autoload": {
  1083. "psr-4": {
  1084. "Psr\\Http\\Message\\": "src/"
  1085. }
  1086. },
  1087. "notification-url": "https://packagist.org/downloads/",
  1088. "license": [
  1089. "MIT"
  1090. ],
  1091. "authors": [
  1092. {
  1093. "name": "PHP-FIG",
  1094. "homepage": "http://www.php-fig.org/"
  1095. }
  1096. ],
  1097. "description": "Common interface for HTTP messages",
  1098. "homepage": "https://github.com/php-fig/http-message",
  1099. "keywords": [
  1100. "http",
  1101. "http-message",
  1102. "psr",
  1103. "psr-7",
  1104. "request",
  1105. "response"
  1106. ],
  1107. "time": "2016-08-06T14:39:51+00:00"
  1108. },
  1109. {
  1110. "name": "psr/log",
  1111. "version": "1.0.2",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/php-fig/log.git",
  1115. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1120. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "php": ">=5.3.0"
  1125. },
  1126. "type": "library",
  1127. "extra": {
  1128. "branch-alias": {
  1129. "dev-master": "1.0.x-dev"
  1130. }
  1131. },
  1132. "autoload": {
  1133. "psr-4": {
  1134. "Psr\\Log\\": "Psr/Log/"
  1135. }
  1136. },
  1137. "notification-url": "https://packagist.org/downloads/",
  1138. "license": [
  1139. "MIT"
  1140. ],
  1141. "authors": [
  1142. {
  1143. "name": "PHP-FIG",
  1144. "homepage": "http://www.php-fig.org/"
  1145. }
  1146. ],
  1147. "description": "Common interface for logging libraries",
  1148. "homepage": "https://github.com/php-fig/log",
  1149. "keywords": [
  1150. "log",
  1151. "psr",
  1152. "psr-3"
  1153. ],
  1154. "time": "2016-10-10T12:19:37+00:00"
  1155. },
  1156. {
  1157. "name": "psr/simple-cache",
  1158. "version": "1.0.1",
  1159. "source": {
  1160. "type": "git",
  1161. "url": "https://github.com/php-fig/simple-cache.git",
  1162. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1163. },
  1164. "dist": {
  1165. "type": "zip",
  1166. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1167. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1168. "shasum": ""
  1169. },
  1170. "require": {
  1171. "php": ">=5.3.0"
  1172. },
  1173. "type": "library",
  1174. "extra": {
  1175. "branch-alias": {
  1176. "dev-master": "1.0.x-dev"
  1177. }
  1178. },
  1179. "autoload": {
  1180. "psr-4": {
  1181. "Psr\\SimpleCache\\": "src/"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "PHP-FIG",
  1191. "homepage": "http://www.php-fig.org/"
  1192. }
  1193. ],
  1194. "description": "Common interfaces for simple caching",
  1195. "keywords": [
  1196. "cache",
  1197. "caching",
  1198. "psr",
  1199. "psr-16",
  1200. "simple-cache"
  1201. ],
  1202. "time": "2017-10-23T01:57:42+00:00"
  1203. },
  1204. {
  1205. "name": "rockettheme/toolbox",
  1206. "version": "1.3.9",
  1207. "source": {
  1208. "type": "git",
  1209. "url": "https://github.com/rockettheme/toolbox.git",
  1210. "reference": "1deea4b45e09f6e0c3e6e075e175e50d05ccbf70"
  1211. },
  1212. "dist": {
  1213. "type": "zip",
  1214. "url": "https://api.github.com/repos/rockettheme/toolbox/zipball/1deea4b45e09f6e0c3e6e075e175e50d05ccbf70",
  1215. "reference": "1deea4b45e09f6e0c3e6e075e175e50d05ccbf70",
  1216. "shasum": ""
  1217. },
  1218. "require": {
  1219. "php": ">=5.4.0",
  1220. "pimple/pimple": "~3.0",
  1221. "symfony/event-dispatcher": ">2.5",
  1222. "symfony/yaml": ">2.5"
  1223. },
  1224. "require-dev": {
  1225. "phpunit/phpunit": "~5.1.5"
  1226. },
  1227. "type": "library",
  1228. "autoload": {
  1229. "psr-4": {
  1230. "RocketTheme\\Toolbox\\ArrayTraits\\": "ArrayTraits/src",
  1231. "RocketTheme\\Toolbox\\Blueprints\\": "Blueprints/src",
  1232. "RocketTheme\\Toolbox\\DI\\": "DI/src",
  1233. "RocketTheme\\Toolbox\\Event\\": "Event/src",
  1234. "RocketTheme\\Toolbox\\File\\": "File/src",
  1235. "RocketTheme\\Toolbox\\ResourceLocator\\": "ResourceLocator/src",
  1236. "RocketTheme\\Toolbox\\Session\\": "Session/src",
  1237. "RocketTheme\\Toolbox\\StreamWrapper\\": "StreamWrapper/src"
  1238. }
  1239. },
  1240. "notification-url": "https://packagist.org/downloads/",
  1241. "license": [
  1242. "MIT"
  1243. ],
  1244. "description": "RocketTheme Toolbox Library",
  1245. "homepage": "http://www.rockettheme.com",
  1246. "keywords": [
  1247. "php",
  1248. "rockettheme"
  1249. ],
  1250. "time": "2018-03-09T00:03:18+00:00"
  1251. },
  1252. {
  1253. "name": "seld/cli-prompt",
  1254. "version": "1.0.3",
  1255. "source": {
  1256. "type": "git",
  1257. "url": "https://github.com/Seldaek/cli-prompt.git",
  1258. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd"
  1259. },
  1260. "dist": {
  1261. "type": "zip",
  1262. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  1263. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  1264. "shasum": ""
  1265. },
  1266. "require": {
  1267. "php": ">=5.3"
  1268. },
  1269. "type": "library",
  1270. "extra": {
  1271. "branch-alias": {
  1272. "dev-master": "1.x-dev"
  1273. }
  1274. },
  1275. "autoload": {
  1276. "psr-4": {
  1277. "Seld\\CliPrompt\\": "src/"
  1278. }
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "MIT"
  1283. ],
  1284. "authors": [
  1285. {
  1286. "name": "Jordi Boggiano",
  1287. "email": "j.boggiano@seld.be"
  1288. }
  1289. ],
  1290. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  1291. "keywords": [
  1292. "cli",
  1293. "console",
  1294. "hidden",
  1295. "input",
  1296. "prompt"
  1297. ],
  1298. "time": "2017-03-18T11:32:45+00:00"
  1299. },
  1300. {
  1301. "name": "symfony/console",
  1302. "version": "v2.8.43",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/symfony/console.git",
  1306. "reference": "42a0adc7dd656ca2e360285eb6d822df9ce0b160"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/symfony/console/zipball/42a0adc7dd656ca2e360285eb6d822df9ce0b160",
  1311. "reference": "42a0adc7dd656ca2e360285eb6d822df9ce0b160",
  1312. "shasum": ""
  1313. },
  1314. "require": {
  1315. "php": ">=5.3.9",
  1316. "symfony/debug": "^2.7.2|~3.0.0",
  1317. "symfony/polyfill-mbstring": "~1.0"
  1318. },
  1319. "require-dev": {
  1320. "psr/log": "~1.0",
  1321. "symfony/event-dispatcher": "~2.1|~3.0.0",
  1322. "symfony/process": "~2.1|~3.0.0"
  1323. },
  1324. "suggest": {
  1325. "psr/log-implementation": "For using the console logger",
  1326. "symfony/event-dispatcher": "",
  1327. "symfony/process": ""
  1328. },
  1329. "type": "library",
  1330. "extra": {
  1331. "branch-alias": {
  1332. "dev-master": "2.8-dev"
  1333. }
  1334. },
  1335. "autoload": {
  1336. "psr-4": {
  1337. "Symfony\\Component\\Console\\": ""
  1338. },
  1339. "exclude-from-classmap": [
  1340. "/Tests/"
  1341. ]
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Fabien Potencier",
  1350. "email": "fabien@symfony.com"
  1351. },
  1352. {
  1353. "name": "Symfony Community",
  1354. "homepage": "https://symfony.com/contributors"
  1355. }
  1356. ],
  1357. "description": "Symfony Console Component",
  1358. "homepage": "https://symfony.com",
  1359. "time": "2018-07-09T12:58:09+00:00"
  1360. },
  1361. {
  1362. "name": "symfony/debug",
  1363. "version": "v3.0.9",
  1364. "source": {
  1365. "type": "git",
  1366. "url": "https://github.com/symfony/debug.git",
  1367. "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a"
  1368. },
  1369. "dist": {
  1370. "type": "zip",
  1371. "url": "https://api.github.com/repos/symfony/debug/zipball/697c527acd9ea1b2d3efac34d9806bf255278b0a",
  1372. "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a",
  1373. "shasum": ""
  1374. },
  1375. "require": {
  1376. "php": ">=5.5.9",
  1377. "psr/log": "~1.0"
  1378. },
  1379. "conflict": {
  1380. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1381. },
  1382. "require-dev": {
  1383. "symfony/class-loader": "~2.8|~3.0",
  1384. "symfony/http-kernel": "~2.8|~3.0"
  1385. },
  1386. "type": "library",
  1387. "extra": {
  1388. "branch-alias": {
  1389. "dev-master": "3.0-dev"
  1390. }
  1391. },
  1392. "autoload": {
  1393. "psr-4": {
  1394. "Symfony\\Component\\Debug\\": ""
  1395. },
  1396. "exclude-from-classmap": [
  1397. "/Tests/"
  1398. ]
  1399. },
  1400. "notification-url": "https://packagist.org/downloads/",
  1401. "license": [
  1402. "MIT"
  1403. ],
  1404. "authors": [
  1405. {
  1406. "name": "Fabien Potencier",
  1407. "email": "fabien@symfony.com"
  1408. },
  1409. {
  1410. "name": "Symfony Community",
  1411. "homepage": "https://symfony.com/contributors"
  1412. }
  1413. ],
  1414. "description": "Symfony Debug Component",
  1415. "homepage": "https://symfony.com",
  1416. "time": "2016-07-30T07:22:48+00:00"
  1417. },
  1418. {
  1419. "name": "symfony/event-dispatcher",
  1420. "version": "v2.8.43",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://github.com/symfony/event-dispatcher.git",
  1424. "reference": "9b69aad7d4c086dc94ebade2d5eb9145da5dac8c"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9b69aad7d4c086dc94ebade2d5eb9145da5dac8c",
  1429. "reference": "9b69aad7d4c086dc94ebade2d5eb9145da5dac8c",
  1430. "shasum": ""
  1431. },
  1432. "require": {
  1433. "php": ">=5.3.9"
  1434. },
  1435. "require-dev": {
  1436. "psr/log": "~1.0",
  1437. "symfony/config": "^2.0.5|~3.0.0",
  1438. "symfony/dependency-injection": "~2.6|~3.0.0",
  1439. "symfony/expression-language": "~2.6|~3.0.0",
  1440. "symfony/stopwatch": "~2.3|~3.0.0"
  1441. },
  1442. "suggest": {
  1443. "symfony/dependency-injection": "",
  1444. "symfony/http-kernel": ""
  1445. },
  1446. "type": "library",
  1447. "extra": {
  1448. "branch-alias": {
  1449. "dev-master": "2.8-dev"
  1450. }
  1451. },
  1452. "autoload": {
  1453. "psr-4": {
  1454. "Symfony\\Component\\EventDispatcher\\": ""
  1455. },
  1456. "exclude-from-classmap": [
  1457. "/Tests/"
  1458. ]
  1459. },
  1460. "notification-url": "https://packagist.org/downloads/",
  1461. "license": [
  1462. "MIT"
  1463. ],
  1464. "authors": [
  1465. {
  1466. "name": "Fabien Potencier",
  1467. "email": "fabien@symfony.com"
  1468. },
  1469. {
  1470. "name": "Symfony Community",
  1471. "homepage": "https://symfony.com/contributors"
  1472. }
  1473. ],
  1474. "description": "Symfony EventDispatcher Component",
  1475. "homepage": "https://symfony.com",
  1476. "time": "2018-04-06T07:35:03+00:00"
  1477. },
  1478. {
  1479. "name": "symfony/polyfill-ctype",
  1480. "version": "v1.8.0",
  1481. "source": {
  1482. "type": "git",
  1483. "url": "https://github.com/symfony/polyfill-ctype.git",
  1484. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae"
  1485. },
  1486. "dist": {
  1487. "type": "zip",
  1488. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
  1489. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
  1490. "shasum": ""
  1491. },
  1492. "require": {
  1493. "php": ">=5.3.3"
  1494. },
  1495. "type": "library",
  1496. "extra": {
  1497. "branch-alias": {
  1498. "dev-master": "1.8-dev"
  1499. }
  1500. },
  1501. "autoload": {
  1502. "psr-4": {
  1503. "Symfony\\Polyfill\\Ctype\\": ""
  1504. },
  1505. "files": [
  1506. "bootstrap.php"
  1507. ]
  1508. },
  1509. "notification-url": "https://packagist.org/downloads/",
  1510. "license": [
  1511. "MIT"
  1512. ],
  1513. "authors": [
  1514. {
  1515. "name": "Symfony Community",
  1516. "homepage": "https://symfony.com/contributors"
  1517. },
  1518. {
  1519. "name": "Gert de Pagter",
  1520. "email": "BackEndTea@gmail.com"
  1521. }
  1522. ],
  1523. "description": "Symfony polyfill for ctype functions",
  1524. "homepage": "https://symfony.com",
  1525. "keywords": [
  1526. "compatibility",
  1527. "ctype",
  1528. "polyfill",
  1529. "portable"
  1530. ],
  1531. "time": "2018-04-30T19:57:29+00:00"
  1532. },
  1533. {
  1534. "name": "symfony/polyfill-iconv",
  1535. "version": "v1.8.0",
  1536. "source": {
  1537. "type": "git",
  1538. "url": "https://github.com/symfony/polyfill-iconv.git",
  1539. "reference": "7cb8436a814d5b0fcf292810ee26f8b0cb47584d"
  1540. },
  1541. "dist": {
  1542. "type": "zip",
  1543. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/7cb8436a814d5b0fcf292810ee26f8b0cb47584d",
  1544. "reference": "7cb8436a814d5b0fcf292810ee26f8b0cb47584d",
  1545. "shasum": ""
  1546. },
  1547. "require": {
  1548. "php": ">=5.3.3"
  1549. },
  1550. "suggest": {
  1551. "ext-iconv": "For best performance"
  1552. },
  1553. "type": "library",
  1554. "extra": {
  1555. "branch-alias": {
  1556. "dev-master": "1.8-dev"
  1557. }
  1558. },
  1559. "autoload": {
  1560. "psr-4": {
  1561. "Symfony\\Polyfill\\Iconv\\": ""
  1562. },
  1563. "files": [
  1564. "bootstrap.php"
  1565. ]
  1566. },
  1567. "notification-url": "https://packagist.org/downloads/",
  1568. "license": [
  1569. "MIT"
  1570. ],
  1571. "authors": [
  1572. {
  1573. "name": "Nicolas Grekas",
  1574. "email": "p@tchwork.com"
  1575. },
  1576. {
  1577. "name": "Symfony Community",
  1578. "homepage": "https://symfony.com/contributors"
  1579. }
  1580. ],
  1581. "description": "Symfony polyfill for the Iconv extension",
  1582. "homepage": "https://symfony.com",
  1583. "keywords": [
  1584. "compatibility",
  1585. "iconv",
  1586. "polyfill",
  1587. "portable",
  1588. "shim"
  1589. ],
  1590. "time": "2018-04-26T10:06:28+00:00"
  1591. },
  1592. {
  1593. "name": "symfony/polyfill-mbstring",
  1594. "version": "v1.8.0",
  1595. "source": {
  1596. "type": "git",
  1597. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1598. "reference": "3296adf6a6454a050679cde90f95350ad604b171"
  1599. },
  1600. "dist": {
  1601. "type": "zip",
  1602. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/3296adf6a6454a050679cde90f95350ad604b171",
  1603. "reference": "3296adf6a6454a050679cde90f95350ad604b171",
  1604. "shasum": ""
  1605. },
  1606. "require": {
  1607. "php": ">=5.3.3"
  1608. },
  1609. "suggest": {
  1610. "ext-mbstring": "For best performance"
  1611. },
  1612. "type": "library",
  1613. "extra": {
  1614. "branch-alias": {
  1615. "dev-master": "1.8-dev"
  1616. }
  1617. },
  1618. "autoload": {
  1619. "psr-4": {
  1620. "Symfony\\Polyfill\\Mbstring\\": ""
  1621. },
  1622. "files": [
  1623. "bootstrap.php"
  1624. ]
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "authors": [
  1631. {
  1632. "name": "Nicolas Grekas",
  1633. "email": "p@tchwork.com"
  1634. },
  1635. {
  1636. "name": "Symfony Community",
  1637. "homepage": "https://symfony.com/contributors"
  1638. }
  1639. ],
  1640. "description": "Symfony polyfill for the Mbstring extension",
  1641. "homepage": "https://symfony.com",
  1642. "keywords": [
  1643. "compatibility",
  1644. "mbstring",
  1645. "polyfill",
  1646. "portable",
  1647. "shim"
  1648. ],
  1649. "time": "2018-04-26T10:06:28+00:00"
  1650. },
  1651. {
  1652. "name": "symfony/var-dumper",
  1653. "version": "v2.8.43",
  1654. "source": {
  1655. "type": "git",
  1656. "url": "https://github.com/symfony/var-dumper.git",
  1657. "reference": "b77b888c33407f9d4f6e7c6ab4fe7fb5336d41d7"
  1658. },
  1659. "dist": {
  1660. "type": "zip",
  1661. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b77b888c33407f9d4f6e7c6ab4fe7fb5336d41d7",
  1662. "reference": "b77b888c33407f9d4f6e7c6ab4fe7fb5336d41d7",
  1663. "shasum": ""
  1664. },
  1665. "require": {
  1666. "php": ">=5.3.9",
  1667. "symfony/polyfill-mbstring": "~1.0"
  1668. },
  1669. "conflict": {
  1670. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  1671. },
  1672. "require-dev": {
  1673. "ext-iconv": "*",
  1674. "twig/twig": "~1.34|~2.4"
  1675. },
  1676. "suggest": {
  1677. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1678. "ext-symfony_debug": ""
  1679. },
  1680. "type": "library",
  1681. "extra": {
  1682. "branch-alias": {
  1683. "dev-master": "2.8-dev"
  1684. }
  1685. },
  1686. "autoload": {
  1687. "files": [
  1688. "Resources/functions/dump.php"
  1689. ],
  1690. "psr-4": {
  1691. "Symfony\\Component\\VarDumper\\": ""
  1692. },
  1693. "exclude-from-classmap": [
  1694. "/Tests/"
  1695. ]
  1696. },
  1697. "notification-url": "https://packagist.org/downloads/",
  1698. "license": [
  1699. "MIT"
  1700. ],
  1701. "authors": [
  1702. {
  1703. "name": "Nicolas Grekas",
  1704. "email": "p@tchwork.com"
  1705. },
  1706. {
  1707. "name": "Symfony Community",
  1708. "homepage": "https://symfony.com/contributors"
  1709. }
  1710. ],
  1711. "description": "Symfony mechanism for exploring and dumping PHP variables",
  1712. "homepage": "https://symfony.com",
  1713. "keywords": [
  1714. "debug",
  1715. "dump"
  1716. ],
  1717. "time": "2018-07-04T15:34:47+00:00"
  1718. },
  1719. {
  1720. "name": "symfony/yaml",
  1721. "version": "v2.8.43",
  1722. "source": {
  1723. "type": "git",
  1724. "url": "https://github.com/symfony/yaml.git",
  1725. "reference": "51356b7a2ff7c9fd06b2f1681cc463bb62b5c1ff"
  1726. },
  1727. "dist": {
  1728. "type": "zip",
  1729. "url": "https://api.github.com/repos/symfony/yaml/zipball/51356b7a2ff7c9fd06b2f1681cc463bb62b5c1ff",
  1730. "reference": "51356b7a2ff7c9fd06b2f1681cc463bb62b5c1ff",
  1731. "shasum": ""
  1732. },
  1733. "require": {
  1734. "php": ">=5.3.9",
  1735. "symfony/polyfill-ctype": "~1.8"
  1736. },
  1737. "type": "library",
  1738. "extra": {
  1739. "branch-alias": {
  1740. "dev-master": "2.8-dev"
  1741. }
  1742. },
  1743. "autoload": {
  1744. "psr-4": {
  1745. "Symfony\\Component\\Yaml\\": ""
  1746. },
  1747. "exclude-from-classmap": [
  1748. "/Tests/"
  1749. ]
  1750. },
  1751. "notification-url": "https://packagist.org/downloads/",
  1752. "license": [
  1753. "MIT"
  1754. ],
  1755. "authors": [
  1756. {
  1757. "name": "Fabien Potencier",
  1758. "email": "fabien@symfony.com"
  1759. },
  1760. {
  1761. "name": "Symfony Community",
  1762. "homepage": "https://symfony.com/contributors"
  1763. }
  1764. ],
  1765. "description": "Symfony Yaml Component",
  1766. "homepage": "https://symfony.com",
  1767. "time": "2018-05-01T22:52:40+00:00"
  1768. },
  1769. {
  1770. "name": "twig/twig",
  1771. "version": "v1.35.4",
  1772. "source": {
  1773. "type": "git",
  1774. "url": "https://github.com/twigphp/Twig.git",
  1775. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a"
  1776. },
  1777. "dist": {
  1778. "type": "zip",
  1779. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  1780. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  1781. "shasum": ""
  1782. },
  1783. "require": {
  1784. "php": ">=5.3.3",
  1785. "symfony/polyfill-ctype": "^1.8"
  1786. },
  1787. "require-dev": {
  1788. "psr/container": "^1.0",
  1789. "symfony/debug": "^2.7",
  1790. "symfony/phpunit-bridge": "^3.3"
  1791. },
  1792. "type": "library",
  1793. "extra": {
  1794. "branch-alias": {
  1795. "dev-master": "1.35-dev"
  1796. }
  1797. },
  1798. "autoload": {
  1799. "psr-0": {
  1800. "Twig_": "lib/"
  1801. },
  1802. "psr-4": {
  1803. "Twig\\": "src/"
  1804. }
  1805. },
  1806. "notification-url": "https://packagist.org/downloads/",
  1807. "license": [
  1808. "BSD-3-Clause"
  1809. ],
  1810. "authors": [
  1811. {
  1812. "name": "Fabien Potencier",
  1813. "email": "fabien@symfony.com",
  1814. "homepage": "http://fabien.potencier.org",
  1815. "role": "Lead Developer"
  1816. },
  1817. {
  1818. "name": "Armin Ronacher",
  1819. "email": "armin.ronacher@active-4.com",
  1820. "role": "Project Founder"
  1821. },
  1822. {
  1823. "name": "Twig Team",
  1824. "homepage": "https://twig.symfony.com/contributors",
  1825. "role": "Contributors"
  1826. }
  1827. ],
  1828. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1829. "homepage": "https://twig.symfony.com",
  1830. "keywords": [
  1831. "templating"
  1832. ],
  1833. "time": "2018-07-13T07:12:17+00:00"
  1834. }
  1835. ],
  1836. "packages-dev": [
  1837. {
  1838. "name": "behat/gherkin",
  1839. "version": "v4.5.1",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://github.com/Behat/Gherkin.git",
  1843. "reference": "74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a",
  1848. "reference": "74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a",
  1849. "shasum": ""
  1850. },
  1851. "require": {
  1852. "php": ">=5.3.1"
  1853. },
  1854. "require-dev": {
  1855. "phpunit/phpunit": "~4.5|~5",
  1856. "symfony/phpunit-bridge": "~2.7|~3",
  1857. "symfony/yaml": "~2.3|~3"
  1858. },
  1859. "suggest": {
  1860. "symfony/yaml": "If you want to parse features, represented in YAML files"
  1861. },
  1862. "type": "library",
  1863. "extra": {
  1864. "branch-alias": {
  1865. "dev-master": "4.4-dev"
  1866. }
  1867. },
  1868. "autoload": {
  1869. "psr-0": {
  1870. "Behat\\Gherkin": "src/"
  1871. }
  1872. },
  1873. "notification-url": "https://packagist.org/downloads/",
  1874. "license": [
  1875. "MIT"
  1876. ],
  1877. "authors": [
  1878. {
  1879. "name": "Konstantin Kudryashov",
  1880. "email": "ever.zet@gmail.com",
  1881. "homepage": "http://everzet.com"
  1882. }
  1883. ],
  1884. "description": "Gherkin DSL parser for PHP 5.3",
  1885. "homepage": "http://behat.org/",
  1886. "keywords": [
  1887. "BDD",
  1888. "Behat",
  1889. "Cucumber",
  1890. "DSL",
  1891. "gherkin",
  1892. "parser"
  1893. ],
  1894. "time": "2017-08-30T11:04:43+00:00"
  1895. },
  1896. {
  1897. "name": "codeception/codeception",
  1898. "version": "2.4.1",
  1899. "source": {
  1900. "type": "git",
  1901. "url": "https://github.com/Codeception/Codeception.git",
  1902. "reference": "bca3547632556875f1cdd567d6057cc14fe472b8"
  1903. },
  1904. "dist": {
  1905. "type": "zip",
  1906. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/bca3547632556875f1cdd567d6057cc14fe472b8",
  1907. "reference": "bca3547632556875f1cdd567d6057cc14fe472b8",
  1908. "shasum": ""
  1909. },
  1910. "require": {
  1911. "behat/gherkin": "^4.4.0",
  1912. "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
  1913. "codeception/stub": "^1.0",
  1914. "ext-json": "*",
  1915. "ext-mbstring": "*",
  1916. "facebook/webdriver": ">=1.1.3 <2.0",
  1917. "guzzlehttp/guzzle": ">=4.1.4 <7.0",
  1918. "guzzlehttp/psr7": "~1.0",
  1919. "php": ">=5.4.0 <8.0",
  1920. "symfony/browser-kit": ">=2.7 <5.0",
  1921. "symfony/console": ">=2.7 <5.0",
  1922. "symfony/css-selector": ">=2.7 <5.0",
  1923. "symfony/dom-crawler": ">=2.7 <5.0",
  1924. "symfony/event-dispatcher": ">=2.7 <5.0",
  1925. "symfony/finder": ">=2.7 <5.0",
  1926. "symfony/yaml": ">=2.7 <5.0"
  1927. },
  1928. "require-dev": {
  1929. "codeception/specify": "~0.3",
  1930. "facebook/graph-sdk": "~5.3",
  1931. "flow/jsonpath": "~0.2",
  1932. "monolog/monolog": "~1.8",
  1933. "pda/pheanstalk": "~3.0",
  1934. "php-amqplib/php-amqplib": "~2.4",
  1935. "predis/predis": "^1.0",
  1936. "squizlabs/php_codesniffer": "~2.0",
  1937. "symfony/process": ">=2.7 <5.0",
  1938. "vlucas/phpdotenv": "^2.4.0"
  1939. },
  1940. "suggest": {
  1941. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  1942. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  1943. "codeception/specify": "BDD-style code blocks",
  1944. "codeception/verify": "BDD-style assertions",
  1945. "flow/jsonpath": "For using JSONPath in REST module",
  1946. "league/factory-muffin": "For DataFactory module",
  1947. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  1948. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  1949. "stecman/symfony-console-completion": "For BASH autocompletion",
  1950. "symfony/phpunit-bridge": "For phpunit-bridge support"
  1951. },
  1952. "bin": [
  1953. "codecept"
  1954. ],
  1955. "type": "library",
  1956. "extra": {
  1957. "branch-alias": []
  1958. },
  1959. "autoload": {
  1960. "psr-4": {
  1961. "Codeception\\": "src\\Codeception",
  1962. "Codeception\\Extension\\": "ext"
  1963. }
  1964. },
  1965. "notification-url": "https://packagist.org/downloads/",
  1966. "license": [
  1967. "MIT"
  1968. ],
  1969. "authors": [
  1970. {
  1971. "name": "Michael Bodnarchuk",
  1972. "email": "davert@mail.ua",
  1973. "homepage": "http://codegyre.com"
  1974. }
  1975. ],
  1976. "description": "BDD-style testing framework",
  1977. "homepage": "http://codeception.com/",
  1978. "keywords": [
  1979. "BDD",
  1980. "TDD",
  1981. "acceptance testing",
  1982. "functional testing",
  1983. "unit testing"
  1984. ],
  1985. "time": "2018-03-31T22:30:43+00:00"
  1986. },
  1987. {
  1988. "name": "codeception/phpunit-wrapper",
  1989. "version": "6.0.10",
  1990. "source": {
  1991. "type": "git",
  1992. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  1993. "reference": "7057e599d97b02b4efb009681a43b327dbce138a"
  1994. },
  1995. "dist": {
  1996. "type": "zip",
  1997. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/7057e599d97b02b4efb009681a43b327dbce138a",
  1998. "reference": "7057e599d97b02b4efb009681a43b327dbce138a",
  1999. "shasum": ""
  2000. },
  2001. "require": {
  2002. "phpunit/php-code-coverage": ">=2.2.4 <6.0",
  2003. "phpunit/phpunit": ">=4.8.28 <5.0.0 || >=5.6.3 <7.0",
  2004. "sebastian/comparator": ">1.1 <3.0",
  2005. "sebastian/diff": ">=1.4 <4.0"
  2006. },
  2007. "replace": {
  2008. "codeception/phpunit-wrapper": "*"
  2009. },
  2010. "require-dev": {
  2011. "codeception/specify": "*",
  2012. "vlucas/phpdotenv": "^2.4"
  2013. },
  2014. "type": "library",
  2015. "autoload": {
  2016. "psr-4": {
  2017. "Codeception\\PHPUnit\\": "src\\"
  2018. }
  2019. },
  2020. "notification-url": "https://packagist.org/downloads/",
  2021. "license": [
  2022. "MIT"
  2023. ],
  2024. "authors": [
  2025. {
  2026. "name": "Davert",
  2027. "email": "davert.php@resend.cc"
  2028. }
  2029. ],
  2030. "description": "PHPUnit classes used by Codeception",
  2031. "time": "2018-06-20T20:08:14+00:00"
  2032. },
  2033. {
  2034. "name": "codeception/stub",
  2035. "version": "1.0.4",
  2036. "source": {
  2037. "type": "git",
  2038. "url": "https://github.com/Codeception/Stub.git",
  2039. "reference": "681b62348837a5ef07d10d8a226f5bc358cc8805"
  2040. },
  2041. "dist": {
  2042. "type": "zip",
  2043. "url": "https://api.github.com/repos/Codeception/Stub/zipball/681b62348837a5ef07d10d8a226f5bc358cc8805",
  2044. "reference": "681b62348837a5ef07d10d8a226f5bc358cc8805",
  2045. "shasum": ""
  2046. },
  2047. "require": {
  2048. "phpunit/phpunit-mock-objects": ">2.3 <7.0"
  2049. },
  2050. "require-dev": {
  2051. "phpunit/phpunit": ">=4.8 <8.0"
  2052. },
  2053. "type": "library",
  2054. "autoload": {
  2055. "psr-4": {
  2056. "Codeception\\": "src/"
  2057. }
  2058. },
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "MIT"
  2062. ],
  2063. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  2064. "time": "2018-05-17T09:31:08+00:00"
  2065. },
  2066. {
  2067. "name": "doctrine/instantiator",
  2068. "version": "1.0.5",
  2069. "source": {
  2070. "type": "git",
  2071. "url": "https://github.com/doctrine/instantiator.git",
  2072. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  2073. },
  2074. "dist": {
  2075. "type": "zip",
  2076. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  2077. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  2078. "shasum": ""
  2079. },
  2080. "require": {
  2081. "php": ">=5.3,<8.0-DEV"
  2082. },
  2083. "require-dev": {
  2084. "athletic/athletic": "~0.1.8",
  2085. "ext-pdo": "*",
  2086. "ext-phar": "*",
  2087. "phpunit/phpunit": "~4.0",
  2088. "squizlabs/php_codesniffer": "~2.0"
  2089. },
  2090. "type": "library",
  2091. "extra": {
  2092. "branch-alias": {
  2093. "dev-master": "1.0.x-dev"
  2094. }
  2095. },
  2096. "autoload": {
  2097. "psr-4": {
  2098. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2099. }
  2100. },
  2101. "notification-url": "https://packagist.org/downloads/",
  2102. "license": [
  2103. "MIT"
  2104. ],
  2105. "authors": [
  2106. {
  2107. "name": "Marco Pivetta",
  2108. "email": "ocramius@gmail.com",
  2109. "homepage": "http://ocramius.github.com/"
  2110. }
  2111. ],
  2112. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2113. "homepage": "https://github.com/doctrine/instantiator",
  2114. "keywords": [
  2115. "constructor",
  2116. "instantiate"
  2117. ],
  2118. "time": "2015-06-14T21:17:01+00:00"
  2119. },
  2120. {
  2121. "name": "facebook/webdriver",
  2122. "version": "1.4.1",
  2123. "source": {
  2124. "type": "git",
  2125. "url": "https://github.com/facebook/php-webdriver.git",
  2126. "reference": "eadb0b7a7c3e6578185197fd40158b08c3164c83"
  2127. },
  2128. "dist": {
  2129. "type": "zip",
  2130. "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/eadb0b7a7c3e6578185197fd40158b08c3164c83",
  2131. "reference": "eadb0b7a7c3e6578185197fd40158b08c3164c83",
  2132. "shasum": ""
  2133. },
  2134. "require": {
  2135. "ext-curl": "*",
  2136. "ext-zip": "*",
  2137. "php": "^5.5 || ~7.0",
  2138. "symfony/process": "^2.8 || ^3.1"
  2139. },
  2140. "require-dev": {
  2141. "friendsofphp/php-cs-fixer": "^2.0",
  2142. "php-mock/php-mock-phpunit": "^1.1",
  2143. "phpunit/phpunit": "4.6.* || ~5.0",
  2144. "satooshi/php-coveralls": "^1.0",
  2145. "squizlabs/php_codesniffer": "^2.6"
  2146. },
  2147. "type": "library",
  2148. "extra": {
  2149. "branch-alias": {
  2150. "dev-community": "1.5-dev"
  2151. }
  2152. },
  2153. "autoload": {
  2154. "psr-4": {
  2155. "Facebook\\WebDriver\\": "lib/"
  2156. }
  2157. },
  2158. "notification-url": "https://packagist.org/downloads/",
  2159. "license": [
  2160. "Apache-2.0"
  2161. ],
  2162. "description": "A PHP client for Selenium WebDriver",
  2163. "homepage": "https://github.com/facebook/php-webdriver",
  2164. "keywords": [
  2165. "facebook",
  2166. "php",
  2167. "selenium",
  2168. "webdriver"
  2169. ],
  2170. "time": "2017-04-28T14:54:49+00:00"
  2171. },
  2172. {
  2173. "name": "fzaninotto/faker",
  2174. "version": "v1.8.0",
  2175. "source": {
  2176. "type": "git",
  2177. "url": "https://github.com/fzaninotto/Faker.git",
  2178. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  2179. },
  2180. "dist": {
  2181. "type": "zip",
  2182. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  2183. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  2184. "shasum": ""
  2185. },
  2186. "require": {
  2187. "php": "^5.3.3 || ^7.0"
  2188. },
  2189. "require-dev": {
  2190. "ext-intl": "*",
  2191. "phpunit/phpunit": "^4.8.35 || ^5.7",
  2192. "squizlabs/php_codesniffer": "^1.5"
  2193. },
  2194. "type": "library",
  2195. "extra": {
  2196. "branch-alias": {
  2197. "dev-master": "1.8-dev"
  2198. }
  2199. },
  2200. "autoload": {
  2201. "psr-4": {
  2202. "Faker\\": "src/Faker/"
  2203. }
  2204. },
  2205. "notification-url": "https://packagist.org/downloads/",
  2206. "license": [
  2207. "MIT"
  2208. ],
  2209. "authors": [
  2210. {
  2211. "name": "François Zaninotto"
  2212. }
  2213. ],
  2214. "description": "Faker is a PHP library that generates fake data for you.",
  2215. "keywords": [
  2216. "data",
  2217. "faker",
  2218. "fixtures"
  2219. ],
  2220. "time": "2018-07-12T10:23:15+00:00"
  2221. },
  2222. {
  2223. "name": "guzzlehttp/guzzle",
  2224. "version": "6.3.3",
  2225. "source": {
  2226. "type": "git",
  2227. "url": "https://github.com/guzzle/guzzle.git",
  2228. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  2229. },
  2230. "dist": {
  2231. "type": "zip",
  2232. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  2233. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  2234. "shasum": ""
  2235. },
  2236. "require": {
  2237. "guzzlehttp/promises": "^1.0",
  2238. "guzzlehttp/psr7": "^1.4",
  2239. "php": ">=5.5"
  2240. },
  2241. "require-dev": {
  2242. "ext-curl": "*",
  2243. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  2244. "psr/log": "^1.0"
  2245. },
  2246. "suggest": {
  2247. "psr/log": "Required for using the Log middleware"
  2248. },
  2249. "type": "library",
  2250. "extra": {
  2251. "branch-alias": {
  2252. "dev-master": "6.3-dev"
  2253. }
  2254. },
  2255. "autoload": {
  2256. "files": [
  2257. "src/functions_include.php"
  2258. ],
  2259. "psr-4": {
  2260. "GuzzleHttp\\": "src/"
  2261. }
  2262. },
  2263. "notification-url": "https://packagist.org/downloads/",
  2264. "license": [
  2265. "MIT"
  2266. ],
  2267. "authors": [
  2268. {
  2269. "name": "Michael Dowling",
  2270. "email": "mtdowling@gmail.com",
  2271. "homepage": "https://github.com/mtdowling"
  2272. }
  2273. ],
  2274. "description": "Guzzle is a PHP HTTP client library",
  2275. "homepage": "http://guzzlephp.org/",
  2276. "keywords": [
  2277. "client",
  2278. "curl",
  2279. "framework",
  2280. "http",
  2281. "http client",
  2282. "rest",
  2283. "web service"
  2284. ],
  2285. "time": "2018-04-22T15:46:56+00:00"
  2286. },
  2287. {
  2288. "name": "guzzlehttp/promises",
  2289. "version": "v1.3.1",
  2290. "source": {
  2291. "type": "git",
  2292. "url": "https://github.com/guzzle/promises.git",
  2293. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  2294. },
  2295. "dist": {
  2296. "type": "zip",
  2297. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2298. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2299. "shasum": ""
  2300. },
  2301. "require": {
  2302. "php": ">=5.5.0"
  2303. },
  2304. "require-dev": {
  2305. "phpunit/phpunit": "^4.0"
  2306. },
  2307. "type": "library",
  2308. "extra": {
  2309. "branch-alias": {
  2310. "dev-master": "1.4-dev"
  2311. }
  2312. },
  2313. "autoload": {
  2314. "psr-4": {
  2315. "GuzzleHttp\\Promise\\": "src/"
  2316. },
  2317. "files": [
  2318. "src/functions_include.php"
  2319. ]
  2320. },
  2321. "notification-url": "https://packagist.org/downloads/",
  2322. "license": [
  2323. "MIT"
  2324. ],
  2325. "authors": [
  2326. {
  2327. "name": "Michael Dowling",
  2328. "email": "mtdowling@gmail.com",
  2329. "homepage": "https://github.com/mtdowling"
  2330. }
  2331. ],
  2332. "description": "Guzzle promises library",
  2333. "keywords": [
  2334. "promise"
  2335. ],
  2336. "time": "2016-12-20T10:07:11+00:00"
  2337. },
  2338. {
  2339. "name": "phpdocumentor/reflection-common",
  2340. "version": "1.0.1",
  2341. "source": {
  2342. "type": "git",
  2343. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2344. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  2345. },
  2346. "dist": {
  2347. "type": "zip",
  2348. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2349. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2350. "shasum": ""
  2351. },
  2352. "require": {
  2353. "php": ">=5.5"
  2354. },
  2355. "require-dev": {
  2356. "phpunit/phpunit": "^4.6"
  2357. },
  2358. "type": "library",
  2359. "extra": {
  2360. "branch-alias": {
  2361. "dev-master": "1.0.x-dev"
  2362. }
  2363. },
  2364. "autoload": {
  2365. "psr-4": {
  2366. "phpDocumentor\\Reflection\\": [
  2367. "src"
  2368. ]
  2369. }
  2370. },
  2371. "notification-url": "https://packagist.org/downloads/",
  2372. "license": [
  2373. "MIT"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "Jaap van Otterdijk",
  2378. "email": "opensource@ijaap.nl"
  2379. }
  2380. ],
  2381. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2382. "homepage": "http://www.phpdoc.org",
  2383. "keywords": [
  2384. "FQSEN",
  2385. "phpDocumentor",
  2386. "phpdoc",
  2387. "reflection",
  2388. "static analysis"
  2389. ],
  2390. "time": "2017-09-11T18:02:19+00:00"
  2391. },
  2392. {
  2393. "name": "phpdocumentor/reflection-docblock",
  2394. "version": "3.2.2",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2398. "reference": "4aada1f93c72c35e22fb1383b47fee43b8f1d157"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/4aada1f93c72c35e22fb1383b47fee43b8f1d157",
  2403. "reference": "4aada1f93c72c35e22fb1383b47fee43b8f1d157",
  2404. "shasum": ""
  2405. },
  2406. "require": {
  2407. "php": ">=5.5",
  2408. "phpdocumentor/reflection-common": "^1.0@dev",
  2409. "phpdocumentor/type-resolver": "^0.3.0",
  2410. "webmozart/assert": "^1.0"
  2411. },
  2412. "require-dev": {
  2413. "mockery/mockery": "^0.9.4",
  2414. "phpunit/phpunit": "^4.4"
  2415. },
  2416. "type": "library",
  2417. "autoload": {
  2418. "psr-4": {
  2419. "phpDocumentor\\Reflection\\": [
  2420. "src/"
  2421. ]
  2422. }
  2423. },
  2424. "notification-url": "https://packagist.org/downloads/",
  2425. "license": [
  2426. "MIT"
  2427. ],
  2428. "authors": [
  2429. {
  2430. "name": "Mike van Riel",
  2431. "email": "me@mikevanriel.com"
  2432. }
  2433. ],
  2434. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2435. "time": "2017-08-08T06:39:58+00:00"
  2436. },
  2437. {
  2438. "name": "phpdocumentor/type-resolver",
  2439. "version": "0.3.0",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2443. "reference": "fb3933512008d8162b3cdf9e18dba9309b7c3773"
  2444. },
  2445. "dist": {
  2446. "type": "zip",
  2447. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/fb3933512008d8162b3cdf9e18dba9309b7c3773",
  2448. "reference": "fb3933512008d8162b3cdf9e18dba9309b7c3773",
  2449. "shasum": ""
  2450. },
  2451. "require": {
  2452. "php": "^5.5 || ^7.0",
  2453. "phpdocumentor/reflection-common": "^1.0"
  2454. },
  2455. "require-dev": {
  2456. "mockery/mockery": "^0.9.4",
  2457. "phpunit/phpunit": "^5.2||^4.8.24"
  2458. },
  2459. "type": "library",
  2460. "extra": {
  2461. "branch-alias": {
  2462. "dev-master": "1.0.x-dev"
  2463. }
  2464. },
  2465. "autoload": {
  2466. "psr-4": {
  2467. "phpDocumentor\\Reflection\\": [
  2468. "src/"
  2469. ]
  2470. }
  2471. },
  2472. "notification-url": "https://packagist.org/downloads/",
  2473. "license": [
  2474. "MIT"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "Mike van Riel",
  2479. "email": "me@mikevanriel.com"
  2480. }
  2481. ],
  2482. "time": "2017-06-03T08:32:36+00:00"
  2483. },
  2484. {
  2485. "name": "phpspec/prophecy",
  2486. "version": "1.7.6",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://github.com/phpspec/prophecy.git",
  2490. "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
  2495. "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
  2496. "shasum": ""
  2497. },
  2498. "require": {
  2499. "doctrine/instantiator": "^1.0.2",
  2500. "php": "^5.3|^7.0",
  2501. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  2502. "sebastian/comparator": "^1.1|^2.0|^3.0",
  2503. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  2504. },
  2505. "require-dev": {
  2506. "phpspec/phpspec": "^2.5|^3.2",
  2507. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  2508. },
  2509. "type": "library",
  2510. "extra": {
  2511. "branch-alias": {
  2512. "dev-master": "1.7.x-dev"
  2513. }
  2514. },
  2515. "autoload": {
  2516. "psr-0": {
  2517. "Prophecy\\": "src/"
  2518. }
  2519. },
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "MIT"
  2523. ],
  2524. "authors": [
  2525. {
  2526. "name": "Konstantin Kudryashov",
  2527. "email": "ever.zet@gmail.com",
  2528. "homepage": "http://everzet.com"
  2529. },
  2530. {
  2531. "name": "Marcello Duarte",
  2532. "email": "marcello.duarte@gmail.com"
  2533. }
  2534. ],
  2535. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2536. "homepage": "https://github.com/phpspec/prophecy",
  2537. "keywords": [
  2538. "Double",
  2539. "Dummy",
  2540. "fake",
  2541. "mock",
  2542. "spy",
  2543. "stub"
  2544. ],
  2545. "time": "2018-04-18T13:57:24+00:00"
  2546. },
  2547. {
  2548. "name": "phpunit/php-code-coverage",
  2549. "version": "2.2.4",
  2550. "source": {
  2551. "type": "git",
  2552. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2553. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  2554. },
  2555. "dist": {
  2556. "type": "zip",
  2557. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  2558. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  2559. "shasum": ""
  2560. },
  2561. "require": {
  2562. "php": ">=5.3.3",
  2563. "phpunit/php-file-iterator": "~1.3",
  2564. "phpunit/php-text-template": "~1.2",
  2565. "phpunit/php-token-stream": "~1.3",
  2566. "sebastian/environment": "^1.3.2",
  2567. "sebastian/version": "~1.0"
  2568. },
  2569. "require-dev": {
  2570. "ext-xdebug": ">=2.1.4",
  2571. "phpunit/phpunit": "~4"
  2572. },
  2573. "suggest": {
  2574. "ext-dom": "*",
  2575. "ext-xdebug": ">=2.2.1",
  2576. "ext-xmlwriter": "*"
  2577. },
  2578. "type": "library",
  2579. "extra": {
  2580. "branch-alias": {
  2581. "dev-master": "2.2.x-dev"
  2582. }
  2583. },
  2584. "autoload": {
  2585. "classmap": [
  2586. "src/"
  2587. ]
  2588. },
  2589. "notification-url": "https://packagist.org/downloads/",
  2590. "license": [
  2591. "BSD-3-Clause"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "Sebastian Bergmann",
  2596. "email": "sb@sebastian-bergmann.de",
  2597. "role": "lead"
  2598. }
  2599. ],
  2600. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2601. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2602. "keywords": [
  2603. "coverage",
  2604. "testing",
  2605. "xunit"
  2606. ],
  2607. "time": "2015-10-06T15:47:00+00:00"
  2608. },
  2609. {
  2610. "name": "phpunit/php-file-iterator",
  2611. "version": "1.4.5",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2615. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  2620. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  2621. "shasum": ""
  2622. },
  2623. "require": {
  2624. "php": ">=5.3.3"
  2625. },
  2626. "type": "library",
  2627. "extra": {
  2628. "branch-alias": {
  2629. "dev-master": "1.4.x-dev"
  2630. }
  2631. },
  2632. "autoload": {
  2633. "classmap": [
  2634. "src/"
  2635. ]
  2636. },
  2637. "notification-url": "https://packagist.org/downloads/",
  2638. "license": [
  2639. "BSD-3-Clause"
  2640. ],
  2641. "authors": [
  2642. {
  2643. "name": "Sebastian Bergmann",
  2644. "email": "sb@sebastian-bergmann.de",
  2645. "role": "lead"
  2646. }
  2647. ],
  2648. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2649. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2650. "keywords": [
  2651. "filesystem",
  2652. "iterator"
  2653. ],
  2654. "time": "2017-11-27T13:52:08+00:00"
  2655. },
  2656. {
  2657. "name": "phpunit/php-text-template",
  2658. "version": "1.2.1",
  2659. "source": {
  2660. "type": "git",
  2661. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2662. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2663. },
  2664. "dist": {
  2665. "type": "zip",
  2666. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2667. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2668. "shasum": ""
  2669. },
  2670. "require": {
  2671. "php": ">=5.3.3"
  2672. },
  2673. "type": "library",
  2674. "autoload": {
  2675. "classmap": [
  2676. "src/"
  2677. ]
  2678. },
  2679. "notification-url": "https://packagist.org/downloads/",
  2680. "license": [
  2681. "BSD-3-Clause"
  2682. ],
  2683. "authors": [
  2684. {
  2685. "name": "Sebastian Bergmann",
  2686. "email": "sebastian@phpunit.de",
  2687. "role": "lead"
  2688. }
  2689. ],
  2690. "description": "Simple template engine.",
  2691. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2692. "keywords": [
  2693. "template"
  2694. ],
  2695. "time": "2015-06-21T13:50:34+00:00"
  2696. },
  2697. {
  2698. "name": "phpunit/php-timer",
  2699. "version": "1.0.9",
  2700. "source": {
  2701. "type": "git",
  2702. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2703. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  2704. },
  2705. "dist": {
  2706. "type": "zip",
  2707. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  2708. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  2709. "shasum": ""
  2710. },
  2711. "require": {
  2712. "php": "^5.3.3 || ^7.0"
  2713. },
  2714. "require-dev": {
  2715. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2716. },
  2717. "type": "library",
  2718. "extra": {
  2719. "branch-alias": {
  2720. "dev-master": "1.0-dev"
  2721. }
  2722. },
  2723. "autoload": {
  2724. "classmap": [
  2725. "src/"
  2726. ]
  2727. },
  2728. "notification-url": "https://packagist.org/downloads/",
  2729. "license": [
  2730. "BSD-3-Clause"
  2731. ],
  2732. "authors": [
  2733. {
  2734. "name": "Sebastian Bergmann",
  2735. "email": "sb@sebastian-bergmann.de",
  2736. "role": "lead"
  2737. }
  2738. ],
  2739. "description": "Utility class for timing",
  2740. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2741. "keywords": [
  2742. "timer"
  2743. ],
  2744. "time": "2017-02-26T11:10:40+00:00"
  2745. },
  2746. {
  2747. "name": "phpunit/php-token-stream",
  2748. "version": "1.4.12",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  2752. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  2757. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  2758. "shasum": ""
  2759. },
  2760. "require": {
  2761. "ext-tokenizer": "*",
  2762. "php": ">=5.3.3"
  2763. },
  2764. "require-dev": {
  2765. "phpunit/phpunit": "~4.2"
  2766. },
  2767. "type": "library",
  2768. "extra": {
  2769. "branch-alias": {
  2770. "dev-master": "1.4-dev"
  2771. }
  2772. },
  2773. "autoload": {
  2774. "classmap": [
  2775. "src/"
  2776. ]
  2777. },
  2778. "notification-url": "https://packagist.org/downloads/",
  2779. "license": [
  2780. "BSD-3-Clause"
  2781. ],
  2782. "authors": [
  2783. {
  2784. "name": "Sebastian Bergmann",
  2785. "email": "sebastian@phpunit.de"
  2786. }
  2787. ],
  2788. "description": "Wrapper around PHP's tokenizer extension.",
  2789. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  2790. "keywords": [
  2791. "tokenizer"
  2792. ],
  2793. "time": "2017-12-04T08:55:13+00:00"
  2794. },
  2795. {
  2796. "name": "phpunit/phpunit",
  2797. "version": "4.8.36",
  2798. "source": {
  2799. "type": "git",
  2800. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2801. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  2802. },
  2803. "dist": {
  2804. "type": "zip",
  2805. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  2806. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  2807. "shasum": ""
  2808. },
  2809. "require": {
  2810. "ext-dom": "*",
  2811. "ext-json": "*",
  2812. "ext-pcre": "*",
  2813. "ext-reflection": "*",
  2814. "ext-spl": "*",
  2815. "php": ">=5.3.3",
  2816. "phpspec/prophecy": "^1.3.1",
  2817. "phpunit/php-code-coverage": "~2.1",
  2818. "phpunit/php-file-iterator": "~1.4",
  2819. "phpunit/php-text-template": "~1.2",
  2820. "phpunit/php-timer": "^1.0.6",
  2821. "phpunit/phpunit-mock-objects": "~2.3",
  2822. "sebastian/comparator": "~1.2.2",
  2823. "sebastian/diff": "~1.2",
  2824. "sebastian/environment": "~1.3",
  2825. "sebastian/exporter": "~1.2",
  2826. "sebastian/global-state": "~1.0",
  2827. "sebastian/version": "~1.0",
  2828. "symfony/yaml": "~2.1|~3.0"
  2829. },
  2830. "suggest": {
  2831. "phpunit/php-invoker": "~1.1"
  2832. },
  2833. "bin": [
  2834. "phpunit"
  2835. ],
  2836. "type": "library",
  2837. "extra": {
  2838. "branch-alias": {
  2839. "dev-master": "4.8.x-dev"
  2840. }
  2841. },
  2842. "autoload": {
  2843. "classmap": [
  2844. "src/"
  2845. ]
  2846. },
  2847. "notification-url": "https://packagist.org/downloads/",
  2848. "license": [
  2849. "BSD-3-Clause"
  2850. ],
  2851. "authors": [
  2852. {
  2853. "name": "Sebastian Bergmann",
  2854. "email": "sebastian@phpunit.de",
  2855. "role": "lead"
  2856. }
  2857. ],
  2858. "description": "The PHP Unit Testing framework.",
  2859. "homepage": "https://phpunit.de/",
  2860. "keywords": [
  2861. "phpunit",
  2862. "testing",
  2863. "xunit"
  2864. ],
  2865. "time": "2017-06-21T08:07:12+00:00"
  2866. },
  2867. {
  2868. "name": "phpunit/phpunit-mock-objects",
  2869. "version": "2.3.8",
  2870. "source": {
  2871. "type": "git",
  2872. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  2873. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  2874. },
  2875. "dist": {
  2876. "type": "zip",
  2877. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  2878. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  2879. "shasum": ""
  2880. },
  2881. "require": {
  2882. "doctrine/instantiator": "^1.0.2",
  2883. "php": ">=5.3.3",
  2884. "phpunit/php-text-template": "~1.2",
  2885. "sebastian/exporter": "~1.2"
  2886. },
  2887. "require-dev": {
  2888. "phpunit/phpunit": "~4.4"
  2889. },
  2890. "suggest": {
  2891. "ext-soap": "*"
  2892. },
  2893. "type": "library",
  2894. "extra": {
  2895. "branch-alias": {
  2896. "dev-master": "2.3.x-dev"
  2897. }
  2898. },
  2899. "autoload": {
  2900. "classmap": [
  2901. "src/"
  2902. ]
  2903. },
  2904. "notification-url": "https://packagist.org/downloads/",
  2905. "license": [
  2906. "BSD-3-Clause"
  2907. ],
  2908. "authors": [
  2909. {
  2910. "name": "Sebastian Bergmann",
  2911. "email": "sb@sebastian-bergmann.de",
  2912. "role": "lead"
  2913. }
  2914. ],
  2915. "description": "Mock Object library for PHPUnit",
  2916. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  2917. "keywords": [
  2918. "mock",
  2919. "xunit"
  2920. ],
  2921. "time": "2015-10-02T06:51:40+00:00"
  2922. },
  2923. {
  2924. "name": "sebastian/comparator",
  2925. "version": "1.2.4",
  2926. "source": {
  2927. "type": "git",
  2928. "url": "https://github.com/sebastianbergmann/comparator.git",
  2929. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  2930. },
  2931. "dist": {
  2932. "type": "zip",
  2933. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  2934. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  2935. "shasum": ""
  2936. },
  2937. "require": {
  2938. "php": ">=5.3.3",
  2939. "sebastian/diff": "~1.2",
  2940. "sebastian/exporter": "~1.2 || ~2.0"
  2941. },
  2942. "require-dev": {
  2943. "phpunit/phpunit": "~4.4"
  2944. },
  2945. "type": "library",
  2946. "extra": {
  2947. "branch-alias": {
  2948. "dev-master": "1.2.x-dev"
  2949. }
  2950. },
  2951. "autoload": {
  2952. "classmap": [
  2953. "src/"
  2954. ]
  2955. },
  2956. "notification-url": "https://packagist.org/downloads/",
  2957. "license": [
  2958. "BSD-3-Clause"
  2959. ],
  2960. "authors": [
  2961. {
  2962. "name": "Jeff Welch",
  2963. "email": "whatthejeff@gmail.com"
  2964. },
  2965. {
  2966. "name": "Volker Dusch",
  2967. "email": "github@wallbash.com"
  2968. },
  2969. {
  2970. "name": "Bernhard Schussek",
  2971. "email": "bschussek@2bepublished.at"
  2972. },
  2973. {
  2974. "name": "Sebastian Bergmann",
  2975. "email": "sebastian@phpunit.de"
  2976. }
  2977. ],
  2978. "description": "Provides the functionality to compare PHP values for equality",
  2979. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  2980. "keywords": [
  2981. "comparator",
  2982. "compare",
  2983. "equality"
  2984. ],
  2985. "time": "2017-01-29T09:50:25+00:00"
  2986. },
  2987. {
  2988. "name": "sebastian/diff",
  2989. "version": "1.4.3",
  2990. "source": {
  2991. "type": "git",
  2992. "url": "https://github.com/sebastianbergmann/diff.git",
  2993. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  2994. },
  2995. "dist": {
  2996. "type": "zip",
  2997. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  2998. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  2999. "shasum": ""
  3000. },
  3001. "require": {
  3002. "php": "^5.3.3 || ^7.0"
  3003. },
  3004. "require-dev": {
  3005. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3006. },
  3007. "type": "library",
  3008. "extra": {
  3009. "branch-alias": {
  3010. "dev-master": "1.4-dev"
  3011. }
  3012. },
  3013. "autoload": {
  3014. "classmap": [
  3015. "src/"
  3016. ]
  3017. },
  3018. "notification-url": "https://packagist.org/downloads/",
  3019. "license": [
  3020. "BSD-3-Clause"
  3021. ],
  3022. "authors": [
  3023. {
  3024. "name": "Kore Nordmann",
  3025. "email": "mail@kore-nordmann.de"
  3026. },
  3027. {
  3028. "name": "Sebastian Bergmann",
  3029. "email": "sebastian@phpunit.de"
  3030. }
  3031. ],
  3032. "description": "Diff implementation",
  3033. "homepage": "https://github.com/sebastianbergmann/diff",
  3034. "keywords": [
  3035. "diff"
  3036. ],
  3037. "time": "2017-05-22T07:24:03+00:00"
  3038. },
  3039. {
  3040. "name": "sebastian/environment",
  3041. "version": "1.3.8",
  3042. "source": {
  3043. "type": "git",
  3044. "url": "https://github.com/sebastianbergmann/environment.git",
  3045. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  3046. },
  3047. "dist": {
  3048. "type": "zip",
  3049. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  3050. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  3051. "shasum": ""
  3052. },
  3053. "require": {
  3054. "php": "^5.3.3 || ^7.0"
  3055. },
  3056. "require-dev": {
  3057. "phpunit/phpunit": "^4.8 || ^5.0"
  3058. },
  3059. "type": "library",
  3060. "extra": {
  3061. "branch-alias": {
  3062. "dev-master": "1.3.x-dev"
  3063. }
  3064. },
  3065. "autoload": {
  3066. "classmap": [
  3067. "src/"
  3068. ]
  3069. },
  3070. "notification-url": "https://packagist.org/downloads/",
  3071. "license": [
  3072. "BSD-3-Clause"
  3073. ],
  3074. "authors": [
  3075. {
  3076. "name": "Sebastian Bergmann",
  3077. "email": "sebastian@phpunit.de"
  3078. }
  3079. ],
  3080. "description": "Provides functionality to handle HHVM/PHP environments",
  3081. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3082. "keywords": [
  3083. "Xdebug",
  3084. "environment",
  3085. "hhvm"
  3086. ],
  3087. "time": "2016-08-18T05:49:44+00:00"
  3088. },
  3089. {
  3090. "name": "sebastian/exporter",
  3091. "version": "1.2.2",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/sebastianbergmann/exporter.git",
  3095. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  3100. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "php": ">=5.3.3",
  3105. "sebastian/recursion-context": "~1.0"
  3106. },
  3107. "require-dev": {
  3108. "ext-mbstring": "*",
  3109. "phpunit/phpunit": "~4.4"
  3110. },
  3111. "type": "library",
  3112. "extra": {
  3113. "branch-alias": {
  3114. "dev-master": "1.3.x-dev"
  3115. }
  3116. },
  3117. "autoload": {
  3118. "classmap": [
  3119. "src/"
  3120. ]
  3121. },
  3122. "notification-url": "https://packagist.org/downloads/",
  3123. "license": [
  3124. "BSD-3-Clause"
  3125. ],
  3126. "authors": [
  3127. {
  3128. "name": "Jeff Welch",
  3129. "email": "whatthejeff@gmail.com"
  3130. },
  3131. {
  3132. "name": "Volker Dusch",
  3133. "email": "github@wallbash.com"
  3134. },
  3135. {
  3136. "name": "Bernhard Schussek",
  3137. "email": "bschussek@2bepublished.at"
  3138. },
  3139. {
  3140. "name": "Sebastian Bergmann",
  3141. "email": "sebastian@phpunit.de"
  3142. },
  3143. {
  3144. "name": "Adam Harvey",
  3145. "email": "aharvey@php.net"
  3146. }
  3147. ],
  3148. "description": "Provides the functionality to export PHP variables for visualization",
  3149. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3150. "keywords": [
  3151. "export",
  3152. "exporter"
  3153. ],
  3154. "time": "2016-06-17T09:04:28+00:00"
  3155. },
  3156. {
  3157. "name": "sebastian/global-state",
  3158. "version": "1.1.1",
  3159. "source": {
  3160. "type": "git",
  3161. "url": "https://github.com/sebastianbergmann/global-state.git",
  3162. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  3163. },
  3164. "dist": {
  3165. "type": "zip",
  3166. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3167. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  3168. "shasum": ""
  3169. },
  3170. "require": {
  3171. "php": ">=5.3.3"
  3172. },
  3173. "require-dev": {
  3174. "phpunit/phpunit": "~4.2"
  3175. },
  3176. "suggest": {
  3177. "ext-uopz": "*"
  3178. },
  3179. "type": "library",
  3180. "extra": {
  3181. "branch-alias": {
  3182. "dev-master": "1.0-dev"
  3183. }
  3184. },
  3185. "autoload": {
  3186. "classmap": [
  3187. "src/"
  3188. ]
  3189. },
  3190. "notification-url": "https://packagist.org/downloads/",
  3191. "license": [
  3192. "BSD-3-Clause"
  3193. ],
  3194. "authors": [
  3195. {
  3196. "name": "Sebastian Bergmann",
  3197. "email": "sebastian@phpunit.de"
  3198. }
  3199. ],
  3200. "description": "Snapshotting of global state",
  3201. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3202. "keywords": [
  3203. "global state"
  3204. ],
  3205. "time": "2015-10-12T03:26:01+00:00"
  3206. },
  3207. {
  3208. "name": "sebastian/recursion-context",
  3209. "version": "1.0.5",
  3210. "source": {
  3211. "type": "git",
  3212. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3213. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  3214. },
  3215. "dist": {
  3216. "type": "zip",
  3217. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  3218. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  3219. "shasum": ""
  3220. },
  3221. "require": {
  3222. "php": ">=5.3.3"
  3223. },
  3224. "require-dev": {
  3225. "phpunit/phpunit": "~4.4"
  3226. },
  3227. "type": "library",
  3228. "extra": {
  3229. "branch-alias": {
  3230. "dev-master": "1.0.x-dev"
  3231. }
  3232. },
  3233. "autoload": {
  3234. "classmap": [
  3235. "src/"
  3236. ]
  3237. },
  3238. "notification-url": "https://packagist.org/downloads/",
  3239. "license": [
  3240. "BSD-3-Clause"
  3241. ],
  3242. "authors": [
  3243. {
  3244. "name": "Jeff Welch",
  3245. "email": "whatthejeff@gmail.com"
  3246. },
  3247. {
  3248. "name": "Sebastian Bergmann",
  3249. "email": "sebastian@phpunit.de"
  3250. },
  3251. {
  3252. "name": "Adam Harvey",
  3253. "email": "aharvey@php.net"
  3254. }
  3255. ],
  3256. "description": "Provides functionality to recursively process PHP variables",
  3257. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3258. "time": "2016-10-03T07:41:43+00:00"
  3259. },
  3260. {
  3261. "name": "sebastian/version",
  3262. "version": "1.0.6",
  3263. "source": {
  3264. "type": "git",
  3265. "url": "https://github.com/sebastianbergmann/version.git",
  3266. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  3267. },
  3268. "dist": {
  3269. "type": "zip",
  3270. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  3271. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  3272. "shasum": ""
  3273. },
  3274. "type": "library",
  3275. "autoload": {
  3276. "classmap": [
  3277. "src/"
  3278. ]
  3279. },
  3280. "notification-url": "https://packagist.org/downloads/",
  3281. "license": [
  3282. "BSD-3-Clause"
  3283. ],
  3284. "authors": [
  3285. {
  3286. "name": "Sebastian Bergmann",
  3287. "email": "sebastian@phpunit.de",
  3288. "role": "lead"
  3289. }
  3290. ],
  3291. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3292. "homepage": "https://github.com/sebastianbergmann/version",
  3293. "time": "2015-06-21T13:59:46+00:00"
  3294. },
  3295. {
  3296. "name": "symfony/browser-kit",
  3297. "version": "v3.4.13",
  3298. "source": {
  3299. "type": "git",
  3300. "url": "https://github.com/symfony/browser-kit.git",
  3301. "reference": "840bb6f0d5b3701fd768b68adf7193c2d0f98f79"
  3302. },
  3303. "dist": {
  3304. "type": "zip",
  3305. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/840bb6f0d5b3701fd768b68adf7193c2d0f98f79",
  3306. "reference": "840bb6f0d5b3701fd768b68adf7193c2d0f98f79",
  3307. "shasum": ""
  3308. },
  3309. "require": {
  3310. "php": "^5.5.9|>=7.0.8",
  3311. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  3312. },
  3313. "require-dev": {
  3314. "symfony/css-selector": "~2.8|~3.0|~4.0",
  3315. "symfony/process": "~2.8|~3.0|~4.0"
  3316. },
  3317. "suggest": {
  3318. "symfony/process": ""
  3319. },
  3320. "type": "library",
  3321. "extra": {
  3322. "branch-alias": {
  3323. "dev-master": "3.4-dev"
  3324. }
  3325. },
  3326. "autoload": {
  3327. "psr-4": {
  3328. "Symfony\\Component\\BrowserKit\\": ""
  3329. },
  3330. "exclude-from-classmap": [
  3331. "/Tests/"
  3332. ]
  3333. },
  3334. "notification-url": "https://packagist.org/downloads/",
  3335. "license": [
  3336. "MIT"
  3337. ],
  3338. "authors": [
  3339. {
  3340. "name": "Fabien Potencier",
  3341. "email": "fabien@symfony.com"
  3342. },
  3343. {
  3344. "name": "Symfony Community",
  3345. "homepage": "https://symfony.com/contributors"
  3346. }
  3347. ],
  3348. "description": "Symfony BrowserKit Component",
  3349. "homepage": "https://symfony.com",
  3350. "time": "2018-03-19T22:32:39+00:00"
  3351. },
  3352. {
  3353. "name": "symfony/css-selector",
  3354. "version": "v3.4.13",
  3355. "source": {
  3356. "type": "git",
  3357. "url": "https://github.com/symfony/css-selector.git",
  3358. "reference": "d2ce52290b648ae33b5301d09bc14ee378612914"
  3359. },
  3360. "dist": {
  3361. "type": "zip",
  3362. "url": "https://api.github.com/repos/symfony/css-selector/zipball/d2ce52290b648ae33b5301d09bc14ee378612914",
  3363. "reference": "d2ce52290b648ae33b5301d09bc14ee378612914",
  3364. "shasum": ""
  3365. },
  3366. "require": {
  3367. "php": "^5.5.9|>=7.0.8"
  3368. },
  3369. "type": "library",
  3370. "extra": {
  3371. "branch-alias": {
  3372. "dev-master": "3.4-dev"
  3373. }
  3374. },
  3375. "autoload": {
  3376. "psr-4": {
  3377. "Symfony\\Component\\CssSelector\\": ""
  3378. },
  3379. "exclude-from-classmap": [
  3380. "/Tests/"
  3381. ]
  3382. },
  3383. "notification-url": "https://packagist.org/downloads/",
  3384. "license": [
  3385. "MIT"
  3386. ],
  3387. "authors": [
  3388. {
  3389. "name": "Jean-François Simon",
  3390. "email": "jeanfrancois.simon@sensiolabs.com"
  3391. },
  3392. {
  3393. "name": "Fabien Potencier",
  3394. "email": "fabien@symfony.com"
  3395. },
  3396. {
  3397. "name": "Symfony Community",
  3398. "homepage": "https://symfony.com/contributors"
  3399. }
  3400. ],
  3401. "description": "Symfony CssSelector Component",
  3402. "homepage": "https://symfony.com",
  3403. "time": "2018-05-16T12:49:49+00:00"
  3404. },
  3405. {
  3406. "name": "symfony/dom-crawler",
  3407. "version": "v3.4.13",
  3408. "source": {
  3409. "type": "git",
  3410. "url": "https://github.com/symfony/dom-crawler.git",
  3411. "reference": "54c9e817b74c7be1840344bf4feaa7a7d02abfb8"
  3412. },
  3413. "dist": {
  3414. "type": "zip",
  3415. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/54c9e817b74c7be1840344bf4feaa7a7d02abfb8",
  3416. "reference": "54c9e817b74c7be1840344bf4feaa7a7d02abfb8",
  3417. "shasum": ""
  3418. },
  3419. "require": {
  3420. "php": "^5.5.9|>=7.0.8",
  3421. "symfony/polyfill-ctype": "~1.8",
  3422. "symfony/polyfill-mbstring": "~1.0"
  3423. },
  3424. "require-dev": {
  3425. "symfony/css-selector": "~2.8|~3.0|~4.0"
  3426. },
  3427. "suggest": {
  3428. "symfony/css-selector": ""
  3429. },
  3430. "type": "library",
  3431. "extra": {
  3432. "branch-alias": {
  3433. "dev-master": "3.4-dev"
  3434. }
  3435. },
  3436. "autoload": {
  3437. "psr-4": {
  3438. "Symfony\\Component\\DomCrawler\\": ""
  3439. },
  3440. "exclude-from-classmap": [
  3441. "/Tests/"
  3442. ]
  3443. },
  3444. "notification-url": "https://packagist.org/downloads/",
  3445. "license": [
  3446. "MIT"
  3447. ],
  3448. "authors": [
  3449. {
  3450. "name": "Fabien Potencier",
  3451. "email": "fabien@symfony.com"
  3452. },
  3453. {
  3454. "name": "Symfony Community",
  3455. "homepage": "https://symfony.com/contributors"
  3456. }
  3457. ],
  3458. "description": "Symfony DomCrawler Component",
  3459. "homepage": "https://symfony.com",
  3460. "time": "2018-07-05T11:53:23+00:00"
  3461. },
  3462. {
  3463. "name": "symfony/finder",
  3464. "version": "v3.4.13",
  3465. "source": {
  3466. "type": "git",
  3467. "url": "https://github.com/symfony/finder.git",
  3468. "reference": "3a8c3de91d2b2c68cd2d665cf9d00f7ef9eaa394"
  3469. },
  3470. "dist": {
  3471. "type": "zip",
  3472. "url": "https://api.github.com/repos/symfony/finder/zipball/3a8c3de91d2b2c68cd2d665cf9d00f7ef9eaa394",
  3473. "reference": "3a8c3de91d2b2c68cd2d665cf9d00f7ef9eaa394",
  3474. "shasum": ""
  3475. },
  3476. "require": {
  3477. "php": "^5.5.9|>=7.0.8"
  3478. },
  3479. "type": "library",
  3480. "extra": {
  3481. "branch-alias": {
  3482. "dev-master": "3.4-dev"
  3483. }
  3484. },
  3485. "autoload": {
  3486. "psr-4": {
  3487. "Symfony\\Component\\Finder\\": ""
  3488. },
  3489. "exclude-from-classmap": [
  3490. "/Tests/"
  3491. ]
  3492. },
  3493. "notification-url": "https://packagist.org/downloads/",
  3494. "license": [
  3495. "MIT"
  3496. ],
  3497. "authors": [
  3498. {
  3499. "name": "Fabien Potencier",
  3500. "email": "fabien@symfony.com"
  3501. },
  3502. {
  3503. "name": "Symfony Community",
  3504. "homepage": "https://symfony.com/contributors"
  3505. }
  3506. ],
  3507. "description": "Symfony Finder Component",
  3508. "homepage": "https://symfony.com",
  3509. "time": "2018-06-19T20:52:10+00:00"
  3510. },
  3511. {
  3512. "name": "symfony/process",
  3513. "version": "v3.4.13",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/symfony/process.git",
  3517. "reference": "f741672edfcfe3a2ea77569d419006f23281d909"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/symfony/process/zipball/f741672edfcfe3a2ea77569d419006f23281d909",
  3522. "reference": "f741672edfcfe3a2ea77569d419006f23281d909",
  3523. "shasum": ""
  3524. },
  3525. "require": {
  3526. "php": "^5.5.9|>=7.0.8"
  3527. },
  3528. "type": "library",
  3529. "extra": {
  3530. "branch-alias": {
  3531. "dev-master": "3.4-dev"
  3532. }
  3533. },
  3534. "autoload": {
  3535. "psr-4": {
  3536. "Symfony\\Component\\Process\\": ""
  3537. },
  3538. "exclude-from-classmap": [
  3539. "/Tests/"
  3540. ]
  3541. },
  3542. "notification-url": "https://packagist.org/downloads/",
  3543. "license": [
  3544. "MIT"
  3545. ],
  3546. "authors": [
  3547. {
  3548. "name": "Fabien Potencier",
  3549. "email": "fabien@symfony.com"
  3550. },
  3551. {
  3552. "name": "Symfony Community",
  3553. "homepage": "https://symfony.com/contributors"
  3554. }
  3555. ],
  3556. "description": "Symfony Process Component",
  3557. "homepage": "https://symfony.com",
  3558. "time": "2018-07-09T09:01:07+00:00"
  3559. },
  3560. {
  3561. "name": "victorjonsson/markdowndocs",
  3562. "version": "dev-master",
  3563. "source": {
  3564. "type": "git",
  3565. "url": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator.git",
  3566. "reference": "c9fa153b28a79f5da89ec32aa501be92db212aed"
  3567. },
  3568. "dist": {
  3569. "type": "zip",
  3570. "url": "https://api.github.com/repos/trilbymedia/PHP-Markdown-Documentation-Generator/zipball/c9fa153b28a79f5da89ec32aa501be92db212aed",
  3571. "reference": "c9fa153b28a79f5da89ec32aa501be92db212aed",
  3572. "shasum": ""
  3573. },
  3574. "require": {
  3575. "php": ">=5.5.0",
  3576. "symfony/console": ">=2.6"
  3577. },
  3578. "require-dev": {
  3579. "phpunit/phpunit": "3.7.23"
  3580. },
  3581. "bin": [
  3582. "bin/phpdoc-md"
  3583. ],
  3584. "type": "library",
  3585. "autoload": {
  3586. "psr-0": {
  3587. "PHPDocsMD": "src/"
  3588. }
  3589. },
  3590. "license": [
  3591. "MIT"
  3592. ],
  3593. "authors": [
  3594. {
  3595. "name": "Victor Jonsson",
  3596. "email": "kontakt@victorjonsson.se"
  3597. }
  3598. ],
  3599. "description": "Command line tool for generating markdown-formatted class documentation",
  3600. "homepage": "https://github.com/victorjonsson/PHP-Markdown-Documentation-Generator",
  3601. "support": {
  3602. "source": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator/tree/master"
  3603. },
  3604. "time": "2017-09-20T13:29:22+00:00"
  3605. },
  3606. {
  3607. "name": "webmozart/assert",
  3608. "version": "1.3.0",
  3609. "source": {
  3610. "type": "git",
  3611. "url": "https://github.com/webmozart/assert.git",
  3612. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  3613. },
  3614. "dist": {
  3615. "type": "zip",
  3616. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  3617. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  3618. "shasum": ""
  3619. },
  3620. "require": {
  3621. "php": "^5.3.3 || ^7.0"
  3622. },
  3623. "require-dev": {
  3624. "phpunit/phpunit": "^4.6",
  3625. "sebastian/version": "^1.0.1"
  3626. },
  3627. "type": "library",
  3628. "extra": {
  3629. "branch-alias": {
  3630. "dev-master": "1.3-dev"
  3631. }
  3632. },
  3633. "autoload": {
  3634. "psr-4": {
  3635. "Webmozart\\Assert\\": "src/"
  3636. }
  3637. },
  3638. "notification-url": "https://packagist.org/downloads/",
  3639. "license": [
  3640. "MIT"
  3641. ],
  3642. "authors": [
  3643. {
  3644. "name": "Bernhard Schussek",
  3645. "email": "bschussek@gmail.com"
  3646. }
  3647. ],
  3648. "description": "Assertions to validate method input/output with nice error messages.",
  3649. "keywords": [
  3650. "assert",
  3651. "check",
  3652. "validate"
  3653. ],
  3654. "time": "2018-01-29T19:49:41+00:00"
  3655. }
  3656. ],
  3657. "aliases": [],
  3658. "minimum-stability": "stable",
  3659. "stability-flags": {
  3660. "victorjonsson/markdowndocs": 20
  3661. },
  3662. "prefer-stable": false,
  3663. "prefer-lowest": false,
  3664. "platform": {
  3665. "php": ">=5.5.9",
  3666. "ext-mbstring": "*",
  3667. "ext-openssl": "*",
  3668. "ext-curl": "*",
  3669. "ext-zip": "*"
  3670. },
  3671. "platform-dev": [],
  3672. "platform-overrides": {
  3673. "php": "5.5.9"
  3674. }
  3675. }