composer.lock 128 KB

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