composer.lock 142 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032
  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#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "b7904d07d1e1765a0a199aa11d6301a3",
  8. "packages": [
  9. {
  10. "name": "dnoegel/php-xdg-base-dir",
  11. "version": "0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  15. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  20. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.2"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "@stable"
  28. },
  29. "type": "project",
  30. "autoload": {
  31. "psr-4": {
  32. "XdgBaseDir\\": "src/"
  33. }
  34. },
  35. "notification-url": "https://packagist.org/downloads/",
  36. "license": [
  37. "MIT"
  38. ],
  39. "description": "implementation of xdg base directory specification for php",
  40. "time": "2014-10-24T07:27:01+00:00"
  41. },
  42. {
  43. "name": "doctrine/inflector",
  44. "version": "v1.3.0",
  45. "source": {
  46. "type": "git",
  47. "url": "https://github.com/doctrine/inflector.git",
  48. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  49. },
  50. "dist": {
  51. "type": "zip",
  52. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  53. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  54. "shasum": ""
  55. },
  56. "require": {
  57. "php": "^7.1"
  58. },
  59. "require-dev": {
  60. "phpunit/phpunit": "^6.2"
  61. },
  62. "type": "library",
  63. "extra": {
  64. "branch-alias": {
  65. "dev-master": "1.3.x-dev"
  66. }
  67. },
  68. "autoload": {
  69. "psr-4": {
  70. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  71. }
  72. },
  73. "notification-url": "https://packagist.org/downloads/",
  74. "license": [
  75. "MIT"
  76. ],
  77. "authors": [
  78. {
  79. "name": "Roman Borschel",
  80. "email": "roman@code-factory.org"
  81. },
  82. {
  83. "name": "Benjamin Eberlei",
  84. "email": "kontakt@beberlei.de"
  85. },
  86. {
  87. "name": "Guilherme Blanco",
  88. "email": "guilhermeblanco@gmail.com"
  89. },
  90. {
  91. "name": "Jonathan Wage",
  92. "email": "jonwage@gmail.com"
  93. },
  94. {
  95. "name": "Johannes Schmitt",
  96. "email": "schmittjoh@gmail.com"
  97. }
  98. ],
  99. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  100. "homepage": "http://www.doctrine-project.org",
  101. "keywords": [
  102. "inflection",
  103. "pluralize",
  104. "singularize",
  105. "string"
  106. ],
  107. "time": "2018-01-09T20:05:19+00:00"
  108. },
  109. {
  110. "name": "doctrine/lexer",
  111. "version": "v1.0.1",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/doctrine/lexer.git",
  115. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  120. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  121. "shasum": ""
  122. },
  123. "require": {
  124. "php": ">=5.3.2"
  125. },
  126. "type": "library",
  127. "extra": {
  128. "branch-alias": {
  129. "dev-master": "1.0.x-dev"
  130. }
  131. },
  132. "autoload": {
  133. "psr-0": {
  134. "Doctrine\\Common\\Lexer\\": "lib/"
  135. }
  136. },
  137. "notification-url": "https://packagist.org/downloads/",
  138. "license": [
  139. "MIT"
  140. ],
  141. "authors": [
  142. {
  143. "name": "Roman Borschel",
  144. "email": "roman@code-factory.org"
  145. },
  146. {
  147. "name": "Guilherme Blanco",
  148. "email": "guilhermeblanco@gmail.com"
  149. },
  150. {
  151. "name": "Johannes Schmitt",
  152. "email": "schmittjoh@gmail.com"
  153. }
  154. ],
  155. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  156. "homepage": "http://www.doctrine-project.org",
  157. "keywords": [
  158. "lexer",
  159. "parser"
  160. ],
  161. "time": "2014-09-09T13:34:57+00:00"
  162. },
  163. {
  164. "name": "egulias/email-validator",
  165. "version": "2.1.5",
  166. "source": {
  167. "type": "git",
  168. "url": "https://github.com/egulias/EmailValidator.git",
  169. "reference": "54859fabea8b3beecbb1a282888d5c990036b9e3"
  170. },
  171. "dist": {
  172. "type": "zip",
  173. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/54859fabea8b3beecbb1a282888d5c990036b9e3",
  174. "reference": "54859fabea8b3beecbb1a282888d5c990036b9e3",
  175. "shasum": ""
  176. },
  177. "require": {
  178. "doctrine/lexer": "^1.0.1",
  179. "php": ">= 5.5"
  180. },
  181. "require-dev": {
  182. "dominicsayers/isemail": "dev-master",
  183. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  184. "satooshi/php-coveralls": "^1.0.1"
  185. },
  186. "suggest": {
  187. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  188. },
  189. "type": "library",
  190. "extra": {
  191. "branch-alias": {
  192. "dev-master": "2.0.x-dev"
  193. }
  194. },
  195. "autoload": {
  196. "psr-4": {
  197. "Egulias\\EmailValidator\\": "EmailValidator"
  198. }
  199. },
  200. "notification-url": "https://packagist.org/downloads/",
  201. "license": [
  202. "MIT"
  203. ],
  204. "authors": [
  205. {
  206. "name": "Eduardo Gulias Davis"
  207. }
  208. ],
  209. "description": "A library for validating emails against several RFCs",
  210. "homepage": "https://github.com/egulias/EmailValidator",
  211. "keywords": [
  212. "email",
  213. "emailvalidation",
  214. "emailvalidator",
  215. "validation",
  216. "validator"
  217. ],
  218. "time": "2018-08-16T20:49:45+00:00"
  219. },
  220. {
  221. "name": "erusev/parsedown",
  222. "version": "1.7.1",
  223. "source": {
  224. "type": "git",
  225. "url": "https://github.com/erusev/parsedown.git",
  226. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1"
  227. },
  228. "dist": {
  229. "type": "zip",
  230. "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  231. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  232. "shasum": ""
  233. },
  234. "require": {
  235. "ext-mbstring": "*",
  236. "php": ">=5.3.0"
  237. },
  238. "require-dev": {
  239. "phpunit/phpunit": "^4.8.35"
  240. },
  241. "type": "library",
  242. "autoload": {
  243. "psr-0": {
  244. "Parsedown": ""
  245. }
  246. },
  247. "notification-url": "https://packagist.org/downloads/",
  248. "license": [
  249. "MIT"
  250. ],
  251. "authors": [
  252. {
  253. "name": "Emanuil Rusev",
  254. "email": "hello@erusev.com",
  255. "homepage": "http://erusev.com"
  256. }
  257. ],
  258. "description": "Parser for Markdown.",
  259. "homepage": "http://parsedown.org",
  260. "keywords": [
  261. "markdown",
  262. "parser"
  263. ],
  264. "time": "2018-03-08T01:11:30+00:00"
  265. },
  266. {
  267. "name": "fideloper/proxy",
  268. "version": "3.3.4",
  269. "source": {
  270. "type": "git",
  271. "url": "https://github.com/fideloper/TrustedProxy.git",
  272. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f"
  273. },
  274. "dist": {
  275. "type": "zip",
  276. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9cdf6f118af58d89764249bbcc7bb260c132924f",
  277. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f",
  278. "shasum": ""
  279. },
  280. "require": {
  281. "illuminate/contracts": "~5.0",
  282. "php": ">=5.4.0"
  283. },
  284. "require-dev": {
  285. "illuminate/http": "~5.0",
  286. "mockery/mockery": "~0.9.3",
  287. "phpunit/phpunit": "^5.7"
  288. },
  289. "type": "library",
  290. "extra": {
  291. "branch-alias": {
  292. "dev-master": "3.3-dev"
  293. },
  294. "laravel": {
  295. "providers": [
  296. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  297. ]
  298. }
  299. },
  300. "autoload": {
  301. "psr-4": {
  302. "Fideloper\\Proxy\\": "src/"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Chris Fidao",
  312. "email": "fideloper@gmail.com"
  313. }
  314. ],
  315. "description": "Set trusted proxies for Laravel",
  316. "keywords": [
  317. "load balancing",
  318. "proxy",
  319. "trusted proxy"
  320. ],
  321. "time": "2017-06-15T17:19:42+00:00"
  322. },
  323. {
  324. "name": "jakub-onderka/php-console-color",
  325. "version": "0.1",
  326. "source": {
  327. "type": "git",
  328. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  329. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  330. },
  331. "dist": {
  332. "type": "zip",
  333. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  334. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  335. "shasum": ""
  336. },
  337. "require": {
  338. "php": ">=5.3.2"
  339. },
  340. "require-dev": {
  341. "jakub-onderka/php-code-style": "1.0",
  342. "jakub-onderka/php-parallel-lint": "0.*",
  343. "jakub-onderka/php-var-dump-check": "0.*",
  344. "phpunit/phpunit": "3.7.*",
  345. "squizlabs/php_codesniffer": "1.*"
  346. },
  347. "type": "library",
  348. "autoload": {
  349. "psr-0": {
  350. "JakubOnderka\\PhpConsoleColor": "src/"
  351. }
  352. },
  353. "notification-url": "https://packagist.org/downloads/",
  354. "license": [
  355. "BSD-2-Clause"
  356. ],
  357. "authors": [
  358. {
  359. "name": "Jakub Onderka",
  360. "email": "jakub.onderka@gmail.com",
  361. "homepage": "http://www.acci.cz"
  362. }
  363. ],
  364. "time": "2014-04-08T15:00:19+00:00"
  365. },
  366. {
  367. "name": "jakub-onderka/php-console-highlighter",
  368. "version": "v0.3.2",
  369. "source": {
  370. "type": "git",
  371. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  372. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  373. },
  374. "dist": {
  375. "type": "zip",
  376. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  377. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  378. "shasum": ""
  379. },
  380. "require": {
  381. "jakub-onderka/php-console-color": "~0.1",
  382. "php": ">=5.3.0"
  383. },
  384. "require-dev": {
  385. "jakub-onderka/php-code-style": "~1.0",
  386. "jakub-onderka/php-parallel-lint": "~0.5",
  387. "jakub-onderka/php-var-dump-check": "~0.1",
  388. "phpunit/phpunit": "~4.0",
  389. "squizlabs/php_codesniffer": "~1.5"
  390. },
  391. "type": "library",
  392. "autoload": {
  393. "psr-0": {
  394. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  395. }
  396. },
  397. "notification-url": "https://packagist.org/downloads/",
  398. "license": [
  399. "MIT"
  400. ],
  401. "authors": [
  402. {
  403. "name": "Jakub Onderka",
  404. "email": "acci@acci.cz",
  405. "homepage": "http://www.acci.cz/"
  406. }
  407. ],
  408. "time": "2015-04-20T18:58:01+00:00"
  409. },
  410. {
  411. "name": "laravel/framework",
  412. "version": "v5.5.43",
  413. "source": {
  414. "type": "git",
  415. "url": "https://github.com/laravel/framework.git",
  416. "reference": "84f4ed02ec6eb4a56629fb6acbee1df56891e3c7"
  417. },
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/laravel/framework/zipball/84f4ed02ec6eb4a56629fb6acbee1df56891e3c7",
  421. "reference": "84f4ed02ec6eb4a56629fb6acbee1df56891e3c7",
  422. "shasum": ""
  423. },
  424. "require": {
  425. "doctrine/inflector": "~1.1",
  426. "erusev/parsedown": "~1.7",
  427. "ext-mbstring": "*",
  428. "ext-openssl": "*",
  429. "league/flysystem": "^1.0.8",
  430. "monolog/monolog": "~1.12",
  431. "mtdowling/cron-expression": "~1.0",
  432. "nesbot/carbon": "^1.24.1",
  433. "php": ">=7.0",
  434. "psr/container": "~1.0",
  435. "psr/simple-cache": "^1.0",
  436. "ramsey/uuid": "~3.0",
  437. "swiftmailer/swiftmailer": "~6.0",
  438. "symfony/console": "~3.3",
  439. "symfony/debug": "~3.3",
  440. "symfony/finder": "~3.3",
  441. "symfony/http-foundation": "~3.3",
  442. "symfony/http-kernel": "~3.3",
  443. "symfony/process": "~3.3",
  444. "symfony/routing": "~3.3",
  445. "symfony/var-dumper": "~3.3",
  446. "tijsverkoyen/css-to-inline-styles": "~2.2",
  447. "vlucas/phpdotenv": "~2.2"
  448. },
  449. "replace": {
  450. "illuminate/auth": "self.version",
  451. "illuminate/broadcasting": "self.version",
  452. "illuminate/bus": "self.version",
  453. "illuminate/cache": "self.version",
  454. "illuminate/config": "self.version",
  455. "illuminate/console": "self.version",
  456. "illuminate/container": "self.version",
  457. "illuminate/contracts": "self.version",
  458. "illuminate/cookie": "self.version",
  459. "illuminate/database": "self.version",
  460. "illuminate/encryption": "self.version",
  461. "illuminate/events": "self.version",
  462. "illuminate/filesystem": "self.version",
  463. "illuminate/hashing": "self.version",
  464. "illuminate/http": "self.version",
  465. "illuminate/log": "self.version",
  466. "illuminate/mail": "self.version",
  467. "illuminate/notifications": "self.version",
  468. "illuminate/pagination": "self.version",
  469. "illuminate/pipeline": "self.version",
  470. "illuminate/queue": "self.version",
  471. "illuminate/redis": "self.version",
  472. "illuminate/routing": "self.version",
  473. "illuminate/session": "self.version",
  474. "illuminate/support": "self.version",
  475. "illuminate/translation": "self.version",
  476. "illuminate/validation": "self.version",
  477. "illuminate/view": "self.version",
  478. "tightenco/collect": "<5.5.33"
  479. },
  480. "require-dev": {
  481. "aws/aws-sdk-php": "~3.0",
  482. "doctrine/dbal": "~2.5",
  483. "filp/whoops": "^2.1.4",
  484. "mockery/mockery": "~1.0",
  485. "orchestra/testbench-core": "3.5.*",
  486. "pda/pheanstalk": "~3.0",
  487. "phpunit/phpunit": "~6.0",
  488. "predis/predis": "^1.1.1",
  489. "symfony/css-selector": "~3.3",
  490. "symfony/dom-crawler": "~3.3"
  491. },
  492. "suggest": {
  493. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  494. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  495. "ext-pcntl": "Required to use all features of the queue worker.",
  496. "ext-posix": "Required to use all features of the queue worker.",
  497. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  498. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  499. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  500. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  501. "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
  502. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  503. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  504. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  505. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  506. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
  507. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).",
  508. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).",
  509. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
  510. },
  511. "type": "library",
  512. "extra": {
  513. "branch-alias": {
  514. "dev-master": "5.5-dev"
  515. }
  516. },
  517. "autoload": {
  518. "files": [
  519. "src/Illuminate/Foundation/helpers.php",
  520. "src/Illuminate/Support/helpers.php"
  521. ],
  522. "psr-4": {
  523. "Illuminate\\": "src/Illuminate/"
  524. }
  525. },
  526. "notification-url": "https://packagist.org/downloads/",
  527. "license": [
  528. "MIT"
  529. ],
  530. "authors": [
  531. {
  532. "name": "Taylor Otwell",
  533. "email": "taylor@laravel.com"
  534. }
  535. ],
  536. "description": "The Laravel Framework.",
  537. "homepage": "https://laravel.com",
  538. "keywords": [
  539. "framework",
  540. "laravel"
  541. ],
  542. "time": "2018-09-02T11:45:05+00:00"
  543. },
  544. {
  545. "name": "laravel/tinker",
  546. "version": "v1.0.7",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/laravel/tinker.git",
  550. "reference": "e3086ee8cb1f54a39ae8dcb72d1c37d10128997d"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/laravel/tinker/zipball/e3086ee8cb1f54a39ae8dcb72d1c37d10128997d",
  555. "reference": "e3086ee8cb1f54a39ae8dcb72d1c37d10128997d",
  556. "shasum": ""
  557. },
  558. "require": {
  559. "illuminate/console": "~5.1",
  560. "illuminate/contracts": "~5.1",
  561. "illuminate/support": "~5.1",
  562. "php": ">=5.5.9",
  563. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  564. "symfony/var-dumper": "~3.0|~4.0"
  565. },
  566. "require-dev": {
  567. "phpunit/phpunit": "~4.0|~5.0"
  568. },
  569. "suggest": {
  570. "illuminate/database": "The Illuminate Database package (~5.1)."
  571. },
  572. "type": "library",
  573. "extra": {
  574. "branch-alias": {
  575. "dev-master": "1.0-dev"
  576. },
  577. "laravel": {
  578. "providers": [
  579. "Laravel\\Tinker\\TinkerServiceProvider"
  580. ]
  581. }
  582. },
  583. "autoload": {
  584. "psr-4": {
  585. "Laravel\\Tinker\\": "src/"
  586. }
  587. },
  588. "notification-url": "https://packagist.org/downloads/",
  589. "license": [
  590. "MIT"
  591. ],
  592. "authors": [
  593. {
  594. "name": "Taylor Otwell",
  595. "email": "taylor@laravel.com"
  596. }
  597. ],
  598. "description": "Powerful REPL for the Laravel framework.",
  599. "keywords": [
  600. "REPL",
  601. "Tinker",
  602. "laravel",
  603. "psysh"
  604. ],
  605. "time": "2018-05-17T13:42:07+00:00"
  606. },
  607. {
  608. "name": "league/flysystem",
  609. "version": "1.0.47",
  610. "source": {
  611. "type": "git",
  612. "url": "https://github.com/thephpleague/flysystem.git",
  613. "reference": "a11e4a75f256bdacf99d20780ce42d3b8272975c"
  614. },
  615. "dist": {
  616. "type": "zip",
  617. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a11e4a75f256bdacf99d20780ce42d3b8272975c",
  618. "reference": "a11e4a75f256bdacf99d20780ce42d3b8272975c",
  619. "shasum": ""
  620. },
  621. "require": {
  622. "ext-fileinfo": "*",
  623. "php": ">=5.5.9"
  624. },
  625. "conflict": {
  626. "league/flysystem-sftp": "<1.0.6"
  627. },
  628. "require-dev": {
  629. "phpspec/phpspec": "^3.4",
  630. "phpunit/phpunit": "^5.7.10"
  631. },
  632. "suggest": {
  633. "ext-fileinfo": "Required for MimeType",
  634. "ext-ftp": "Allows you to use FTP server storage",
  635. "ext-openssl": "Allows you to use FTPS server storage",
  636. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  637. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  638. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  639. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  640. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  641. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  642. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  643. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  644. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  645. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  646. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  647. },
  648. "type": "library",
  649. "extra": {
  650. "branch-alias": {
  651. "dev-master": "1.1-dev"
  652. }
  653. },
  654. "autoload": {
  655. "psr-4": {
  656. "League\\Flysystem\\": "src/"
  657. }
  658. },
  659. "notification-url": "https://packagist.org/downloads/",
  660. "license": [
  661. "MIT"
  662. ],
  663. "authors": [
  664. {
  665. "name": "Frank de Jonge",
  666. "email": "info@frenky.net"
  667. }
  668. ],
  669. "description": "Filesystem abstraction: Many filesystems, one API.",
  670. "keywords": [
  671. "Cloud Files",
  672. "WebDAV",
  673. "abstraction",
  674. "aws",
  675. "cloud",
  676. "copy.com",
  677. "dropbox",
  678. "file systems",
  679. "files",
  680. "filesystem",
  681. "filesystems",
  682. "ftp",
  683. "rackspace",
  684. "remote",
  685. "s3",
  686. "sftp",
  687. "storage"
  688. ],
  689. "time": "2018-09-14T15:30:29+00:00"
  690. },
  691. {
  692. "name": "monolog/monolog",
  693. "version": "1.23.0",
  694. "source": {
  695. "type": "git",
  696. "url": "https://github.com/Seldaek/monolog.git",
  697. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
  698. },
  699. "dist": {
  700. "type": "zip",
  701. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  702. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  703. "shasum": ""
  704. },
  705. "require": {
  706. "php": ">=5.3.0",
  707. "psr/log": "~1.0"
  708. },
  709. "provide": {
  710. "psr/log-implementation": "1.0.0"
  711. },
  712. "require-dev": {
  713. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  714. "doctrine/couchdb": "~1.0@dev",
  715. "graylog2/gelf-php": "~1.0",
  716. "jakub-onderka/php-parallel-lint": "0.9",
  717. "php-amqplib/php-amqplib": "~2.4",
  718. "php-console/php-console": "^3.1.3",
  719. "phpunit/phpunit": "~4.5",
  720. "phpunit/phpunit-mock-objects": "2.3.0",
  721. "ruflin/elastica": ">=0.90 <3.0",
  722. "sentry/sentry": "^0.13",
  723. "swiftmailer/swiftmailer": "^5.3|^6.0"
  724. },
  725. "suggest": {
  726. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  727. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  728. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  729. "ext-mongo": "Allow sending log messages to a MongoDB server",
  730. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  731. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  732. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  733. "php-console/php-console": "Allow sending log messages to Google Chrome",
  734. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  735. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  736. "sentry/sentry": "Allow sending log messages to a Sentry server"
  737. },
  738. "type": "library",
  739. "extra": {
  740. "branch-alias": {
  741. "dev-master": "2.0.x-dev"
  742. }
  743. },
  744. "autoload": {
  745. "psr-4": {
  746. "Monolog\\": "src/Monolog"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Jordi Boggiano",
  756. "email": "j.boggiano@seld.be",
  757. "homepage": "http://seld.be"
  758. }
  759. ],
  760. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  761. "homepage": "http://github.com/Seldaek/monolog",
  762. "keywords": [
  763. "log",
  764. "logging",
  765. "psr-3"
  766. ],
  767. "time": "2017-06-19T01:22:40+00:00"
  768. },
  769. {
  770. "name": "mtdowling/cron-expression",
  771. "version": "v1.2.1",
  772. "source": {
  773. "type": "git",
  774. "url": "https://github.com/mtdowling/cron-expression.git",
  775. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  776. },
  777. "dist": {
  778. "type": "zip",
  779. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  780. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  781. "shasum": ""
  782. },
  783. "require": {
  784. "php": ">=5.3.2"
  785. },
  786. "require-dev": {
  787. "phpunit/phpunit": "~4.0|~5.0"
  788. },
  789. "type": "library",
  790. "autoload": {
  791. "psr-4": {
  792. "Cron\\": "src/Cron/"
  793. }
  794. },
  795. "notification-url": "https://packagist.org/downloads/",
  796. "license": [
  797. "MIT"
  798. ],
  799. "authors": [
  800. {
  801. "name": "Michael Dowling",
  802. "email": "mtdowling@gmail.com",
  803. "homepage": "https://github.com/mtdowling"
  804. }
  805. ],
  806. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  807. "keywords": [
  808. "cron",
  809. "schedule"
  810. ],
  811. "time": "2017-01-23T04:29:33+00:00"
  812. },
  813. {
  814. "name": "nesbot/carbon",
  815. "version": "1.34.0",
  816. "source": {
  817. "type": "git",
  818. "url": "https://github.com/briannesbitt/Carbon.git",
  819. "reference": "1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33"
  820. },
  821. "dist": {
  822. "type": "zip",
  823. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33",
  824. "reference": "1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33",
  825. "shasum": ""
  826. },
  827. "require": {
  828. "php": ">=5.3.9",
  829. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  830. },
  831. "require-dev": {
  832. "friendsofphp/php-cs-fixer": "~2",
  833. "phpunit/phpunit": "^4.8.35 || ^5.7"
  834. },
  835. "type": "library",
  836. "extra": {
  837. "laravel": {
  838. "providers": [
  839. "Carbon\\Laravel\\ServiceProvider"
  840. ]
  841. }
  842. },
  843. "autoload": {
  844. "psr-4": {
  845. "": "src/"
  846. }
  847. },
  848. "notification-url": "https://packagist.org/downloads/",
  849. "license": [
  850. "MIT"
  851. ],
  852. "authors": [
  853. {
  854. "name": "Brian Nesbitt",
  855. "email": "brian@nesbot.com",
  856. "homepage": "http://nesbot.com"
  857. }
  858. ],
  859. "description": "A simple API extension for DateTime.",
  860. "homepage": "http://carbon.nesbot.com",
  861. "keywords": [
  862. "date",
  863. "datetime",
  864. "time"
  865. ],
  866. "time": "2018-09-20T19:36:25+00:00"
  867. },
  868. {
  869. "name": "nikic/php-parser",
  870. "version": "v4.0.4",
  871. "source": {
  872. "type": "git",
  873. "url": "https://github.com/nikic/PHP-Parser.git",
  874. "reference": "fa6ee28600d21d49b2b4e1006b48426cec8e579c"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/fa6ee28600d21d49b2b4e1006b48426cec8e579c",
  879. "reference": "fa6ee28600d21d49b2b4e1006b48426cec8e579c",
  880. "shasum": ""
  881. },
  882. "require": {
  883. "ext-tokenizer": "*",
  884. "php": ">=7.0"
  885. },
  886. "require-dev": {
  887. "phpunit/phpunit": "^6.5 || ^7.0"
  888. },
  889. "bin": [
  890. "bin/php-parse"
  891. ],
  892. "type": "library",
  893. "extra": {
  894. "branch-alias": {
  895. "dev-master": "4.0-dev"
  896. }
  897. },
  898. "autoload": {
  899. "psr-4": {
  900. "PhpParser\\": "lib/PhpParser"
  901. }
  902. },
  903. "notification-url": "https://packagist.org/downloads/",
  904. "license": [
  905. "BSD-3-Clause"
  906. ],
  907. "authors": [
  908. {
  909. "name": "Nikita Popov"
  910. }
  911. ],
  912. "description": "A PHP parser written in PHP",
  913. "keywords": [
  914. "parser",
  915. "php"
  916. ],
  917. "time": "2018-09-18T07:03:24+00:00"
  918. },
  919. {
  920. "name": "paragonie/random_compat",
  921. "version": "v9.99.99",
  922. "source": {
  923. "type": "git",
  924. "url": "https://github.com/paragonie/random_compat.git",
  925. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  926. },
  927. "dist": {
  928. "type": "zip",
  929. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  930. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  931. "shasum": ""
  932. },
  933. "require": {
  934. "php": "^7"
  935. },
  936. "require-dev": {
  937. "phpunit/phpunit": "4.*|5.*",
  938. "vimeo/psalm": "^1"
  939. },
  940. "suggest": {
  941. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  942. },
  943. "type": "library",
  944. "notification-url": "https://packagist.org/downloads/",
  945. "license": [
  946. "MIT"
  947. ],
  948. "authors": [
  949. {
  950. "name": "Paragon Initiative Enterprises",
  951. "email": "security@paragonie.com",
  952. "homepage": "https://paragonie.com"
  953. }
  954. ],
  955. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  956. "keywords": [
  957. "csprng",
  958. "polyfill",
  959. "pseudorandom",
  960. "random"
  961. ],
  962. "time": "2018-07-02T15:55:56+00:00"
  963. },
  964. {
  965. "name": "psr/container",
  966. "version": "1.0.0",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/php-fig/container.git",
  970. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  975. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  976. "shasum": ""
  977. },
  978. "require": {
  979. "php": ">=5.3.0"
  980. },
  981. "type": "library",
  982. "extra": {
  983. "branch-alias": {
  984. "dev-master": "1.0.x-dev"
  985. }
  986. },
  987. "autoload": {
  988. "psr-4": {
  989. "Psr\\Container\\": "src/"
  990. }
  991. },
  992. "notification-url": "https://packagist.org/downloads/",
  993. "license": [
  994. "MIT"
  995. ],
  996. "authors": [
  997. {
  998. "name": "PHP-FIG",
  999. "homepage": "http://www.php-fig.org/"
  1000. }
  1001. ],
  1002. "description": "Common Container Interface (PHP FIG PSR-11)",
  1003. "homepage": "https://github.com/php-fig/container",
  1004. "keywords": [
  1005. "PSR-11",
  1006. "container",
  1007. "container-interface",
  1008. "container-interop",
  1009. "psr"
  1010. ],
  1011. "time": "2017-02-14T16:28:37+00:00"
  1012. },
  1013. {
  1014. "name": "psr/log",
  1015. "version": "1.0.2",
  1016. "source": {
  1017. "type": "git",
  1018. "url": "https://github.com/php-fig/log.git",
  1019. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1020. },
  1021. "dist": {
  1022. "type": "zip",
  1023. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1024. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1025. "shasum": ""
  1026. },
  1027. "require": {
  1028. "php": ">=5.3.0"
  1029. },
  1030. "type": "library",
  1031. "extra": {
  1032. "branch-alias": {
  1033. "dev-master": "1.0.x-dev"
  1034. }
  1035. },
  1036. "autoload": {
  1037. "psr-4": {
  1038. "Psr\\Log\\": "Psr/Log/"
  1039. }
  1040. },
  1041. "notification-url": "https://packagist.org/downloads/",
  1042. "license": [
  1043. "MIT"
  1044. ],
  1045. "authors": [
  1046. {
  1047. "name": "PHP-FIG",
  1048. "homepage": "http://www.php-fig.org/"
  1049. }
  1050. ],
  1051. "description": "Common interface for logging libraries",
  1052. "homepage": "https://github.com/php-fig/log",
  1053. "keywords": [
  1054. "log",
  1055. "psr",
  1056. "psr-3"
  1057. ],
  1058. "time": "2016-10-10T12:19:37+00:00"
  1059. },
  1060. {
  1061. "name": "psr/simple-cache",
  1062. "version": "1.0.1",
  1063. "source": {
  1064. "type": "git",
  1065. "url": "https://github.com/php-fig/simple-cache.git",
  1066. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1067. },
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1071. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1072. "shasum": ""
  1073. },
  1074. "require": {
  1075. "php": ">=5.3.0"
  1076. },
  1077. "type": "library",
  1078. "extra": {
  1079. "branch-alias": {
  1080. "dev-master": "1.0.x-dev"
  1081. }
  1082. },
  1083. "autoload": {
  1084. "psr-4": {
  1085. "Psr\\SimpleCache\\": "src/"
  1086. }
  1087. },
  1088. "notification-url": "https://packagist.org/downloads/",
  1089. "license": [
  1090. "MIT"
  1091. ],
  1092. "authors": [
  1093. {
  1094. "name": "PHP-FIG",
  1095. "homepage": "http://www.php-fig.org/"
  1096. }
  1097. ],
  1098. "description": "Common interfaces for simple caching",
  1099. "keywords": [
  1100. "cache",
  1101. "caching",
  1102. "psr",
  1103. "psr-16",
  1104. "simple-cache"
  1105. ],
  1106. "time": "2017-10-23T01:57:42+00:00"
  1107. },
  1108. {
  1109. "name": "psy/psysh",
  1110. "version": "v0.9.8",
  1111. "source": {
  1112. "type": "git",
  1113. "url": "https://github.com/bobthecow/psysh.git",
  1114. "reference": "ed3c32c4304e1a678a6e0f9dc11dd2d927d89555"
  1115. },
  1116. "dist": {
  1117. "type": "zip",
  1118. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/ed3c32c4304e1a678a6e0f9dc11dd2d927d89555",
  1119. "reference": "ed3c32c4304e1a678a6e0f9dc11dd2d927d89555",
  1120. "shasum": ""
  1121. },
  1122. "require": {
  1123. "dnoegel/php-xdg-base-dir": "0.1",
  1124. "ext-json": "*",
  1125. "ext-tokenizer": "*",
  1126. "jakub-onderka/php-console-highlighter": "0.3.*",
  1127. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  1128. "php": ">=5.4.0",
  1129. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  1130. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  1131. },
  1132. "require-dev": {
  1133. "bamarni/composer-bin-plugin": "^1.2",
  1134. "hoa/console": "~2.15|~3.16",
  1135. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  1136. },
  1137. "suggest": {
  1138. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1139. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1140. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1141. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  1142. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  1143. },
  1144. "bin": [
  1145. "bin/psysh"
  1146. ],
  1147. "type": "library",
  1148. "extra": {
  1149. "branch-alias": {
  1150. "dev-develop": "0.9.x-dev"
  1151. }
  1152. },
  1153. "autoload": {
  1154. "files": [
  1155. "src/functions.php"
  1156. ],
  1157. "psr-4": {
  1158. "Psy\\": "src/"
  1159. }
  1160. },
  1161. "notification-url": "https://packagist.org/downloads/",
  1162. "license": [
  1163. "MIT"
  1164. ],
  1165. "authors": [
  1166. {
  1167. "name": "Justin Hileman",
  1168. "email": "justin@justinhileman.info",
  1169. "homepage": "http://justinhileman.com"
  1170. }
  1171. ],
  1172. "description": "An interactive shell for modern PHP.",
  1173. "homepage": "http://psysh.org",
  1174. "keywords": [
  1175. "REPL",
  1176. "console",
  1177. "interactive",
  1178. "shell"
  1179. ],
  1180. "time": "2018-09-05T11:40:09+00:00"
  1181. },
  1182. {
  1183. "name": "ramsey/uuid",
  1184. "version": "3.8.0",
  1185. "source": {
  1186. "type": "git",
  1187. "url": "https://github.com/ramsey/uuid.git",
  1188. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  1189. },
  1190. "dist": {
  1191. "type": "zip",
  1192. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  1193. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  1194. "shasum": ""
  1195. },
  1196. "require": {
  1197. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  1198. "php": "^5.4 || ^7.0",
  1199. "symfony/polyfill-ctype": "^1.8"
  1200. },
  1201. "replace": {
  1202. "rhumsaa/uuid": "self.version"
  1203. },
  1204. "require-dev": {
  1205. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  1206. "doctrine/annotations": "~1.2.0",
  1207. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  1208. "ircmaxell/random-lib": "^1.1",
  1209. "jakub-onderka/php-parallel-lint": "^0.9.0",
  1210. "mockery/mockery": "^0.9.9",
  1211. "moontoast/math": "^1.1",
  1212. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  1213. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  1214. "squizlabs/php_codesniffer": "^2.3"
  1215. },
  1216. "suggest": {
  1217. "ext-ctype": "Provides support for PHP Ctype functions",
  1218. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  1219. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  1220. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  1221. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  1222. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  1223. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  1224. },
  1225. "type": "library",
  1226. "extra": {
  1227. "branch-alias": {
  1228. "dev-master": "3.x-dev"
  1229. }
  1230. },
  1231. "autoload": {
  1232. "psr-4": {
  1233. "Ramsey\\Uuid\\": "src/"
  1234. }
  1235. },
  1236. "notification-url": "https://packagist.org/downloads/",
  1237. "license": [
  1238. "MIT"
  1239. ],
  1240. "authors": [
  1241. {
  1242. "name": "Marijn Huizendveld",
  1243. "email": "marijn.huizendveld@gmail.com"
  1244. },
  1245. {
  1246. "name": "Thibaud Fabre",
  1247. "email": "thibaud@aztech.io"
  1248. },
  1249. {
  1250. "name": "Ben Ramsey",
  1251. "email": "ben@benramsey.com",
  1252. "homepage": "https://benramsey.com"
  1253. }
  1254. ],
  1255. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  1256. "homepage": "https://github.com/ramsey/uuid",
  1257. "keywords": [
  1258. "guid",
  1259. "identifier",
  1260. "uuid"
  1261. ],
  1262. "time": "2018-07-19T23:38:55+00:00"
  1263. },
  1264. {
  1265. "name": "swiftmailer/swiftmailer",
  1266. "version": "v6.1.3",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1270. "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8ddcb66ac10c392d3beb54829eef8ac1438595f4",
  1275. "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "egulias/email-validator": "~2.0",
  1280. "php": ">=7.0.0"
  1281. },
  1282. "require-dev": {
  1283. "mockery/mockery": "~0.9.1",
  1284. "symfony/phpunit-bridge": "~3.3@dev"
  1285. },
  1286. "suggest": {
  1287. "ext-intl": "Needed to support internationalized email addresses",
  1288. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  1289. },
  1290. "type": "library",
  1291. "extra": {
  1292. "branch-alias": {
  1293. "dev-master": "6.1-dev"
  1294. }
  1295. },
  1296. "autoload": {
  1297. "files": [
  1298. "lib/swift_required.php"
  1299. ]
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "authors": [
  1306. {
  1307. "name": "Chris Corbyn"
  1308. },
  1309. {
  1310. "name": "Fabien Potencier",
  1311. "email": "fabien@symfony.com"
  1312. }
  1313. ],
  1314. "description": "Swiftmailer, free feature-rich PHP mailer",
  1315. "homepage": "https://swiftmailer.symfony.com",
  1316. "keywords": [
  1317. "email",
  1318. "mail",
  1319. "mailer"
  1320. ],
  1321. "time": "2018-09-11T07:12:52+00:00"
  1322. },
  1323. {
  1324. "name": "symfony/console",
  1325. "version": "v3.4.15",
  1326. "source": {
  1327. "type": "git",
  1328. "url": "https://github.com/symfony/console.git",
  1329. "reference": "6b217594552b9323bcdcfc14f8a0ce126e84cd73"
  1330. },
  1331. "dist": {
  1332. "type": "zip",
  1333. "url": "https://api.github.com/repos/symfony/console/zipball/6b217594552b9323bcdcfc14f8a0ce126e84cd73",
  1334. "reference": "6b217594552b9323bcdcfc14f8a0ce126e84cd73",
  1335. "shasum": ""
  1336. },
  1337. "require": {
  1338. "php": "^5.5.9|>=7.0.8",
  1339. "symfony/debug": "~2.8|~3.0|~4.0",
  1340. "symfony/polyfill-mbstring": "~1.0"
  1341. },
  1342. "conflict": {
  1343. "symfony/dependency-injection": "<3.4",
  1344. "symfony/process": "<3.3"
  1345. },
  1346. "require-dev": {
  1347. "psr/log": "~1.0",
  1348. "symfony/config": "~3.3|~4.0",
  1349. "symfony/dependency-injection": "~3.4|~4.0",
  1350. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  1351. "symfony/lock": "~3.4|~4.0",
  1352. "symfony/process": "~3.3|~4.0"
  1353. },
  1354. "suggest": {
  1355. "psr/log-implementation": "For using the console logger",
  1356. "symfony/event-dispatcher": "",
  1357. "symfony/lock": "",
  1358. "symfony/process": ""
  1359. },
  1360. "type": "library",
  1361. "extra": {
  1362. "branch-alias": {
  1363. "dev-master": "3.4-dev"
  1364. }
  1365. },
  1366. "autoload": {
  1367. "psr-4": {
  1368. "Symfony\\Component\\Console\\": ""
  1369. },
  1370. "exclude-from-classmap": [
  1371. "/Tests/"
  1372. ]
  1373. },
  1374. "notification-url": "https://packagist.org/downloads/",
  1375. "license": [
  1376. "MIT"
  1377. ],
  1378. "authors": [
  1379. {
  1380. "name": "Fabien Potencier",
  1381. "email": "fabien@symfony.com"
  1382. },
  1383. {
  1384. "name": "Symfony Community",
  1385. "homepage": "https://symfony.com/contributors"
  1386. }
  1387. ],
  1388. "description": "Symfony Console Component",
  1389. "homepage": "https://symfony.com",
  1390. "time": "2018-07-26T11:19:56+00:00"
  1391. },
  1392. {
  1393. "name": "symfony/css-selector",
  1394. "version": "v3.4.15",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/symfony/css-selector.git",
  1398. "reference": "edda5a6155000ff8c3a3f85ee5c421af93cca416"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/symfony/css-selector/zipball/edda5a6155000ff8c3a3f85ee5c421af93cca416",
  1403. "reference": "edda5a6155000ff8c3a3f85ee5c421af93cca416",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "php": "^5.5.9|>=7.0.8"
  1408. },
  1409. "type": "library",
  1410. "extra": {
  1411. "branch-alias": {
  1412. "dev-master": "3.4-dev"
  1413. }
  1414. },
  1415. "autoload": {
  1416. "psr-4": {
  1417. "Symfony\\Component\\CssSelector\\": ""
  1418. },
  1419. "exclude-from-classmap": [
  1420. "/Tests/"
  1421. ]
  1422. },
  1423. "notification-url": "https://packagist.org/downloads/",
  1424. "license": [
  1425. "MIT"
  1426. ],
  1427. "authors": [
  1428. {
  1429. "name": "Jean-François Simon",
  1430. "email": "jeanfrancois.simon@sensiolabs.com"
  1431. },
  1432. {
  1433. "name": "Fabien Potencier",
  1434. "email": "fabien@symfony.com"
  1435. },
  1436. {
  1437. "name": "Symfony Community",
  1438. "homepage": "https://symfony.com/contributors"
  1439. }
  1440. ],
  1441. "description": "Symfony CssSelector Component",
  1442. "homepage": "https://symfony.com",
  1443. "time": "2018-07-26T09:06:28+00:00"
  1444. },
  1445. {
  1446. "name": "symfony/debug",
  1447. "version": "v3.4.15",
  1448. "source": {
  1449. "type": "git",
  1450. "url": "https://github.com/symfony/debug.git",
  1451. "reference": "c4625e75341e4fb309ce0c049cbf7fb84b8897cd"
  1452. },
  1453. "dist": {
  1454. "type": "zip",
  1455. "url": "https://api.github.com/repos/symfony/debug/zipball/c4625e75341e4fb309ce0c049cbf7fb84b8897cd",
  1456. "reference": "c4625e75341e4fb309ce0c049cbf7fb84b8897cd",
  1457. "shasum": ""
  1458. },
  1459. "require": {
  1460. "php": "^5.5.9|>=7.0.8",
  1461. "psr/log": "~1.0"
  1462. },
  1463. "conflict": {
  1464. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1465. },
  1466. "require-dev": {
  1467. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  1468. },
  1469. "type": "library",
  1470. "extra": {
  1471. "branch-alias": {
  1472. "dev-master": "3.4-dev"
  1473. }
  1474. },
  1475. "autoload": {
  1476. "psr-4": {
  1477. "Symfony\\Component\\Debug\\": ""
  1478. },
  1479. "exclude-from-classmap": [
  1480. "/Tests/"
  1481. ]
  1482. },
  1483. "notification-url": "https://packagist.org/downloads/",
  1484. "license": [
  1485. "MIT"
  1486. ],
  1487. "authors": [
  1488. {
  1489. "name": "Fabien Potencier",
  1490. "email": "fabien@symfony.com"
  1491. },
  1492. {
  1493. "name": "Symfony Community",
  1494. "homepage": "https://symfony.com/contributors"
  1495. }
  1496. ],
  1497. "description": "Symfony Debug Component",
  1498. "homepage": "https://symfony.com",
  1499. "time": "2018-08-03T10:42:44+00:00"
  1500. },
  1501. {
  1502. "name": "symfony/event-dispatcher",
  1503. "version": "v3.4.15",
  1504. "source": {
  1505. "type": "git",
  1506. "url": "https://github.com/symfony/event-dispatcher.git",
  1507. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb"
  1508. },
  1509. "dist": {
  1510. "type": "zip",
  1511. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  1512. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  1513. "shasum": ""
  1514. },
  1515. "require": {
  1516. "php": "^5.5.9|>=7.0.8"
  1517. },
  1518. "conflict": {
  1519. "symfony/dependency-injection": "<3.3"
  1520. },
  1521. "require-dev": {
  1522. "psr/log": "~1.0",
  1523. "symfony/config": "~2.8|~3.0|~4.0",
  1524. "symfony/dependency-injection": "~3.3|~4.0",
  1525. "symfony/expression-language": "~2.8|~3.0|~4.0",
  1526. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  1527. },
  1528. "suggest": {
  1529. "symfony/dependency-injection": "",
  1530. "symfony/http-kernel": ""
  1531. },
  1532. "type": "library",
  1533. "extra": {
  1534. "branch-alias": {
  1535. "dev-master": "3.4-dev"
  1536. }
  1537. },
  1538. "autoload": {
  1539. "psr-4": {
  1540. "Symfony\\Component\\EventDispatcher\\": ""
  1541. },
  1542. "exclude-from-classmap": [
  1543. "/Tests/"
  1544. ]
  1545. },
  1546. "notification-url": "https://packagist.org/downloads/",
  1547. "license": [
  1548. "MIT"
  1549. ],
  1550. "authors": [
  1551. {
  1552. "name": "Fabien Potencier",
  1553. "email": "fabien@symfony.com"
  1554. },
  1555. {
  1556. "name": "Symfony Community",
  1557. "homepage": "https://symfony.com/contributors"
  1558. }
  1559. ],
  1560. "description": "Symfony EventDispatcher Component",
  1561. "homepage": "https://symfony.com",
  1562. "time": "2018-07-26T09:06:28+00:00"
  1563. },
  1564. {
  1565. "name": "symfony/finder",
  1566. "version": "v3.4.15",
  1567. "source": {
  1568. "type": "git",
  1569. "url": "https://github.com/symfony/finder.git",
  1570. "reference": "8a84fcb207451df0013b2c74cbbf1b62d47b999a"
  1571. },
  1572. "dist": {
  1573. "type": "zip",
  1574. "url": "https://api.github.com/repos/symfony/finder/zipball/8a84fcb207451df0013b2c74cbbf1b62d47b999a",
  1575. "reference": "8a84fcb207451df0013b2c74cbbf1b62d47b999a",
  1576. "shasum": ""
  1577. },
  1578. "require": {
  1579. "php": "^5.5.9|>=7.0.8"
  1580. },
  1581. "type": "library",
  1582. "extra": {
  1583. "branch-alias": {
  1584. "dev-master": "3.4-dev"
  1585. }
  1586. },
  1587. "autoload": {
  1588. "psr-4": {
  1589. "Symfony\\Component\\Finder\\": ""
  1590. },
  1591. "exclude-from-classmap": [
  1592. "/Tests/"
  1593. ]
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "MIT"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Fabien Potencier",
  1602. "email": "fabien@symfony.com"
  1603. },
  1604. {
  1605. "name": "Symfony Community",
  1606. "homepage": "https://symfony.com/contributors"
  1607. }
  1608. ],
  1609. "description": "Symfony Finder Component",
  1610. "homepage": "https://symfony.com",
  1611. "time": "2018-07-26T11:19:56+00:00"
  1612. },
  1613. {
  1614. "name": "symfony/http-foundation",
  1615. "version": "v3.4.15",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://github.com/symfony/http-foundation.git",
  1619. "reference": "2fb33cb6eefe6e790e4023f7c534a9e4214252fc"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/2fb33cb6eefe6e790e4023f7c534a9e4214252fc",
  1624. "reference": "2fb33cb6eefe6e790e4023f7c534a9e4214252fc",
  1625. "shasum": ""
  1626. },
  1627. "require": {
  1628. "php": "^5.5.9|>=7.0.8",
  1629. "symfony/polyfill-mbstring": "~1.1",
  1630. "symfony/polyfill-php70": "~1.6"
  1631. },
  1632. "require-dev": {
  1633. "symfony/expression-language": "~2.8|~3.0|~4.0"
  1634. },
  1635. "type": "library",
  1636. "extra": {
  1637. "branch-alias": {
  1638. "dev-master": "3.4-dev"
  1639. }
  1640. },
  1641. "autoload": {
  1642. "psr-4": {
  1643. "Symfony\\Component\\HttpFoundation\\": ""
  1644. },
  1645. "exclude-from-classmap": [
  1646. "/Tests/"
  1647. ]
  1648. },
  1649. "notification-url": "https://packagist.org/downloads/",
  1650. "license": [
  1651. "MIT"
  1652. ],
  1653. "authors": [
  1654. {
  1655. "name": "Fabien Potencier",
  1656. "email": "fabien@symfony.com"
  1657. },
  1658. {
  1659. "name": "Symfony Community",
  1660. "homepage": "https://symfony.com/contributors"
  1661. }
  1662. ],
  1663. "description": "Symfony HttpFoundation Component",
  1664. "homepage": "https://symfony.com",
  1665. "time": "2018-08-27T17:45:33+00:00"
  1666. },
  1667. {
  1668. "name": "symfony/http-kernel",
  1669. "version": "v3.4.15",
  1670. "source": {
  1671. "type": "git",
  1672. "url": "https://github.com/symfony/http-kernel.git",
  1673. "reference": "2819693b25f480966cbfa13b651abccfed4871ca"
  1674. },
  1675. "dist": {
  1676. "type": "zip",
  1677. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2819693b25f480966cbfa13b651abccfed4871ca",
  1678. "reference": "2819693b25f480966cbfa13b651abccfed4871ca",
  1679. "shasum": ""
  1680. },
  1681. "require": {
  1682. "php": "^5.5.9|>=7.0.8",
  1683. "psr/log": "~1.0",
  1684. "symfony/debug": "~2.8|~3.0|~4.0",
  1685. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  1686. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  1687. "symfony/polyfill-ctype": "~1.8"
  1688. },
  1689. "conflict": {
  1690. "symfony/config": "<2.8",
  1691. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  1692. "symfony/var-dumper": "<3.3",
  1693. "twig/twig": "<1.34|<2.4,>=2"
  1694. },
  1695. "provide": {
  1696. "psr/log-implementation": "1.0"
  1697. },
  1698. "require-dev": {
  1699. "psr/cache": "~1.0",
  1700. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  1701. "symfony/class-loader": "~2.8|~3.0",
  1702. "symfony/config": "~2.8|~3.0|~4.0",
  1703. "symfony/console": "~2.8|~3.0|~4.0",
  1704. "symfony/css-selector": "~2.8|~3.0|~4.0",
  1705. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  1706. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  1707. "symfony/expression-language": "~2.8|~3.0|~4.0",
  1708. "symfony/finder": "~2.8|~3.0|~4.0",
  1709. "symfony/process": "~2.8|~3.0|~4.0",
  1710. "symfony/routing": "~3.4|~4.0",
  1711. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  1712. "symfony/templating": "~2.8|~3.0|~4.0",
  1713. "symfony/translation": "~2.8|~3.0|~4.0",
  1714. "symfony/var-dumper": "~3.3|~4.0"
  1715. },
  1716. "suggest": {
  1717. "symfony/browser-kit": "",
  1718. "symfony/config": "",
  1719. "symfony/console": "",
  1720. "symfony/dependency-injection": "",
  1721. "symfony/finder": "",
  1722. "symfony/var-dumper": ""
  1723. },
  1724. "type": "library",
  1725. "extra": {
  1726. "branch-alias": {
  1727. "dev-master": "3.4-dev"
  1728. }
  1729. },
  1730. "autoload": {
  1731. "psr-4": {
  1732. "Symfony\\Component\\HttpKernel\\": ""
  1733. },
  1734. "exclude-from-classmap": [
  1735. "/Tests/"
  1736. ]
  1737. },
  1738. "notification-url": "https://packagist.org/downloads/",
  1739. "license": [
  1740. "MIT"
  1741. ],
  1742. "authors": [
  1743. {
  1744. "name": "Fabien Potencier",
  1745. "email": "fabien@symfony.com"
  1746. },
  1747. {
  1748. "name": "Symfony Community",
  1749. "homepage": "https://symfony.com/contributors"
  1750. }
  1751. ],
  1752. "description": "Symfony HttpKernel Component",
  1753. "homepage": "https://symfony.com",
  1754. "time": "2018-08-28T06:06:12+00:00"
  1755. },
  1756. {
  1757. "name": "symfony/polyfill-ctype",
  1758. "version": "v1.9.0",
  1759. "source": {
  1760. "type": "git",
  1761. "url": "https://github.com/symfony/polyfill-ctype.git",
  1762. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  1763. },
  1764. "dist": {
  1765. "type": "zip",
  1766. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  1767. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  1768. "shasum": ""
  1769. },
  1770. "require": {
  1771. "php": ">=5.3.3"
  1772. },
  1773. "suggest": {
  1774. "ext-ctype": "For best performance"
  1775. },
  1776. "type": "library",
  1777. "extra": {
  1778. "branch-alias": {
  1779. "dev-master": "1.9-dev"
  1780. }
  1781. },
  1782. "autoload": {
  1783. "psr-4": {
  1784. "Symfony\\Polyfill\\Ctype\\": ""
  1785. },
  1786. "files": [
  1787. "bootstrap.php"
  1788. ]
  1789. },
  1790. "notification-url": "https://packagist.org/downloads/",
  1791. "license": [
  1792. "MIT"
  1793. ],
  1794. "authors": [
  1795. {
  1796. "name": "Symfony Community",
  1797. "homepage": "https://symfony.com/contributors"
  1798. },
  1799. {
  1800. "name": "Gert de Pagter",
  1801. "email": "BackEndTea@gmail.com"
  1802. }
  1803. ],
  1804. "description": "Symfony polyfill for ctype functions",
  1805. "homepage": "https://symfony.com",
  1806. "keywords": [
  1807. "compatibility",
  1808. "ctype",
  1809. "polyfill",
  1810. "portable"
  1811. ],
  1812. "time": "2018-08-06T14:22:27+00:00"
  1813. },
  1814. {
  1815. "name": "symfony/polyfill-mbstring",
  1816. "version": "v1.9.0",
  1817. "source": {
  1818. "type": "git",
  1819. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1820. "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8"
  1821. },
  1822. "dist": {
  1823. "type": "zip",
  1824. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8",
  1825. "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8",
  1826. "shasum": ""
  1827. },
  1828. "require": {
  1829. "php": ">=5.3.3"
  1830. },
  1831. "suggest": {
  1832. "ext-mbstring": "For best performance"
  1833. },
  1834. "type": "library",
  1835. "extra": {
  1836. "branch-alias": {
  1837. "dev-master": "1.9-dev"
  1838. }
  1839. },
  1840. "autoload": {
  1841. "psr-4": {
  1842. "Symfony\\Polyfill\\Mbstring\\": ""
  1843. },
  1844. "files": [
  1845. "bootstrap.php"
  1846. ]
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "MIT"
  1851. ],
  1852. "authors": [
  1853. {
  1854. "name": "Nicolas Grekas",
  1855. "email": "p@tchwork.com"
  1856. },
  1857. {
  1858. "name": "Symfony Community",
  1859. "homepage": "https://symfony.com/contributors"
  1860. }
  1861. ],
  1862. "description": "Symfony polyfill for the Mbstring extension",
  1863. "homepage": "https://symfony.com",
  1864. "keywords": [
  1865. "compatibility",
  1866. "mbstring",
  1867. "polyfill",
  1868. "portable",
  1869. "shim"
  1870. ],
  1871. "time": "2018-08-06T14:22:27+00:00"
  1872. },
  1873. {
  1874. "name": "symfony/polyfill-php70",
  1875. "version": "v1.9.0",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/symfony/polyfill-php70.git",
  1879. "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/1e24b0c4a56d55aaf368763a06c6d1c7d3194934",
  1884. "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934",
  1885. "shasum": ""
  1886. },
  1887. "require": {
  1888. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  1889. "php": ">=5.3.3"
  1890. },
  1891. "type": "library",
  1892. "extra": {
  1893. "branch-alias": {
  1894. "dev-master": "1.9-dev"
  1895. }
  1896. },
  1897. "autoload": {
  1898. "psr-4": {
  1899. "Symfony\\Polyfill\\Php70\\": ""
  1900. },
  1901. "files": [
  1902. "bootstrap.php"
  1903. ],
  1904. "classmap": [
  1905. "Resources/stubs"
  1906. ]
  1907. },
  1908. "notification-url": "https://packagist.org/downloads/",
  1909. "license": [
  1910. "MIT"
  1911. ],
  1912. "authors": [
  1913. {
  1914. "name": "Nicolas Grekas",
  1915. "email": "p@tchwork.com"
  1916. },
  1917. {
  1918. "name": "Symfony Community",
  1919. "homepage": "https://symfony.com/contributors"
  1920. }
  1921. ],
  1922. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  1923. "homepage": "https://symfony.com",
  1924. "keywords": [
  1925. "compatibility",
  1926. "polyfill",
  1927. "portable",
  1928. "shim"
  1929. ],
  1930. "time": "2018-08-06T14:22:27+00:00"
  1931. },
  1932. {
  1933. "name": "symfony/process",
  1934. "version": "v3.4.15",
  1935. "source": {
  1936. "type": "git",
  1937. "url": "https://github.com/symfony/process.git",
  1938. "reference": "4d6b125d5293cbceedc2aa10f2c71617e76262e7"
  1939. },
  1940. "dist": {
  1941. "type": "zip",
  1942. "url": "https://api.github.com/repos/symfony/process/zipball/4d6b125d5293cbceedc2aa10f2c71617e76262e7",
  1943. "reference": "4d6b125d5293cbceedc2aa10f2c71617e76262e7",
  1944. "shasum": ""
  1945. },
  1946. "require": {
  1947. "php": "^5.5.9|>=7.0.8"
  1948. },
  1949. "type": "library",
  1950. "extra": {
  1951. "branch-alias": {
  1952. "dev-master": "3.4-dev"
  1953. }
  1954. },
  1955. "autoload": {
  1956. "psr-4": {
  1957. "Symfony\\Component\\Process\\": ""
  1958. },
  1959. "exclude-from-classmap": [
  1960. "/Tests/"
  1961. ]
  1962. },
  1963. "notification-url": "https://packagist.org/downloads/",
  1964. "license": [
  1965. "MIT"
  1966. ],
  1967. "authors": [
  1968. {
  1969. "name": "Fabien Potencier",
  1970. "email": "fabien@symfony.com"
  1971. },
  1972. {
  1973. "name": "Symfony Community",
  1974. "homepage": "https://symfony.com/contributors"
  1975. }
  1976. ],
  1977. "description": "Symfony Process Component",
  1978. "homepage": "https://symfony.com",
  1979. "time": "2018-08-03T10:42:44+00:00"
  1980. },
  1981. {
  1982. "name": "symfony/routing",
  1983. "version": "v3.4.15",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://github.com/symfony/routing.git",
  1987. "reference": "e20f4bb79502c3c0db86d572f7683a30d4143911"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://api.github.com/repos/symfony/routing/zipball/e20f4bb79502c3c0db86d572f7683a30d4143911",
  1992. "reference": "e20f4bb79502c3c0db86d572f7683a30d4143911",
  1993. "shasum": ""
  1994. },
  1995. "require": {
  1996. "php": "^5.5.9|>=7.0.8"
  1997. },
  1998. "conflict": {
  1999. "symfony/config": "<3.3.1",
  2000. "symfony/dependency-injection": "<3.3",
  2001. "symfony/yaml": "<3.4"
  2002. },
  2003. "require-dev": {
  2004. "doctrine/annotations": "~1.0",
  2005. "psr/log": "~1.0",
  2006. "symfony/config": "^3.3.1|~4.0",
  2007. "symfony/dependency-injection": "~3.3|~4.0",
  2008. "symfony/expression-language": "~2.8|~3.0|~4.0",
  2009. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  2010. "symfony/yaml": "~3.4|~4.0"
  2011. },
  2012. "suggest": {
  2013. "doctrine/annotations": "For using the annotation loader",
  2014. "symfony/config": "For using the all-in-one router or any loader",
  2015. "symfony/dependency-injection": "For loading routes from a service",
  2016. "symfony/expression-language": "For using expression matching",
  2017. "symfony/http-foundation": "For using a Symfony Request object",
  2018. "symfony/yaml": "For using the YAML loader"
  2019. },
  2020. "type": "library",
  2021. "extra": {
  2022. "branch-alias": {
  2023. "dev-master": "3.4-dev"
  2024. }
  2025. },
  2026. "autoload": {
  2027. "psr-4": {
  2028. "Symfony\\Component\\Routing\\": ""
  2029. },
  2030. "exclude-from-classmap": [
  2031. "/Tests/"
  2032. ]
  2033. },
  2034. "notification-url": "https://packagist.org/downloads/",
  2035. "license": [
  2036. "MIT"
  2037. ],
  2038. "authors": [
  2039. {
  2040. "name": "Fabien Potencier",
  2041. "email": "fabien@symfony.com"
  2042. },
  2043. {
  2044. "name": "Symfony Community",
  2045. "homepage": "https://symfony.com/contributors"
  2046. }
  2047. ],
  2048. "description": "Symfony Routing Component",
  2049. "homepage": "https://symfony.com",
  2050. "keywords": [
  2051. "router",
  2052. "routing",
  2053. "uri",
  2054. "url"
  2055. ],
  2056. "time": "2018-07-26T11:19:56+00:00"
  2057. },
  2058. {
  2059. "name": "symfony/translation",
  2060. "version": "v3.4.15",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://github.com/symfony/translation.git",
  2064. "reference": "9749930bfc825139aadd2d28461ddbaed6577862"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://api.github.com/repos/symfony/translation/zipball/9749930bfc825139aadd2d28461ddbaed6577862",
  2069. "reference": "9749930bfc825139aadd2d28461ddbaed6577862",
  2070. "shasum": ""
  2071. },
  2072. "require": {
  2073. "php": "^5.5.9|>=7.0.8",
  2074. "symfony/polyfill-mbstring": "~1.0"
  2075. },
  2076. "conflict": {
  2077. "symfony/config": "<2.8",
  2078. "symfony/dependency-injection": "<3.4",
  2079. "symfony/yaml": "<3.4"
  2080. },
  2081. "require-dev": {
  2082. "psr/log": "~1.0",
  2083. "symfony/config": "~2.8|~3.0|~4.0",
  2084. "symfony/dependency-injection": "~3.4|~4.0",
  2085. "symfony/finder": "~2.8|~3.0|~4.0",
  2086. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  2087. "symfony/yaml": "~3.4|~4.0"
  2088. },
  2089. "suggest": {
  2090. "psr/log-implementation": "To use logging capability in translator",
  2091. "symfony/config": "",
  2092. "symfony/yaml": ""
  2093. },
  2094. "type": "library",
  2095. "extra": {
  2096. "branch-alias": {
  2097. "dev-master": "3.4-dev"
  2098. }
  2099. },
  2100. "autoload": {
  2101. "psr-4": {
  2102. "Symfony\\Component\\Translation\\": ""
  2103. },
  2104. "exclude-from-classmap": [
  2105. "/Tests/"
  2106. ]
  2107. },
  2108. "notification-url": "https://packagist.org/downloads/",
  2109. "license": [
  2110. "MIT"
  2111. ],
  2112. "authors": [
  2113. {
  2114. "name": "Fabien Potencier",
  2115. "email": "fabien@symfony.com"
  2116. },
  2117. {
  2118. "name": "Symfony Community",
  2119. "homepage": "https://symfony.com/contributors"
  2120. }
  2121. ],
  2122. "description": "Symfony Translation Component",
  2123. "homepage": "https://symfony.com",
  2124. "time": "2018-07-26T11:19:56+00:00"
  2125. },
  2126. {
  2127. "name": "symfony/var-dumper",
  2128. "version": "v3.4.15",
  2129. "source": {
  2130. "type": "git",
  2131. "url": "https://github.com/symfony/var-dumper.git",
  2132. "reference": "f62a394bd3de96f2f5e8f4c7d685035897fb3cb3"
  2133. },
  2134. "dist": {
  2135. "type": "zip",
  2136. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f62a394bd3de96f2f5e8f4c7d685035897fb3cb3",
  2137. "reference": "f62a394bd3de96f2f5e8f4c7d685035897fb3cb3",
  2138. "shasum": ""
  2139. },
  2140. "require": {
  2141. "php": "^5.5.9|>=7.0.8",
  2142. "symfony/polyfill-mbstring": "~1.0"
  2143. },
  2144. "conflict": {
  2145. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2146. },
  2147. "require-dev": {
  2148. "ext-iconv": "*",
  2149. "twig/twig": "~1.34|~2.4"
  2150. },
  2151. "suggest": {
  2152. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2153. "ext-intl": "To show region name in time zone dump",
  2154. "ext-symfony_debug": ""
  2155. },
  2156. "type": "library",
  2157. "extra": {
  2158. "branch-alias": {
  2159. "dev-master": "3.4-dev"
  2160. }
  2161. },
  2162. "autoload": {
  2163. "files": [
  2164. "Resources/functions/dump.php"
  2165. ],
  2166. "psr-4": {
  2167. "Symfony\\Component\\VarDumper\\": ""
  2168. },
  2169. "exclude-from-classmap": [
  2170. "/Tests/"
  2171. ]
  2172. },
  2173. "notification-url": "https://packagist.org/downloads/",
  2174. "license": [
  2175. "MIT"
  2176. ],
  2177. "authors": [
  2178. {
  2179. "name": "Nicolas Grekas",
  2180. "email": "p@tchwork.com"
  2181. },
  2182. {
  2183. "name": "Symfony Community",
  2184. "homepage": "https://symfony.com/contributors"
  2185. }
  2186. ],
  2187. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2188. "homepage": "https://symfony.com",
  2189. "keywords": [
  2190. "debug",
  2191. "dump"
  2192. ],
  2193. "time": "2018-07-26T11:19:56+00:00"
  2194. },
  2195. {
  2196. "name": "tijsverkoyen/css-to-inline-styles",
  2197. "version": "2.2.1",
  2198. "source": {
  2199. "type": "git",
  2200. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  2201. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  2202. },
  2203. "dist": {
  2204. "type": "zip",
  2205. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  2206. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  2207. "shasum": ""
  2208. },
  2209. "require": {
  2210. "php": "^5.5 || ^7.0",
  2211. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  2212. },
  2213. "require-dev": {
  2214. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2215. },
  2216. "type": "library",
  2217. "extra": {
  2218. "branch-alias": {
  2219. "dev-master": "2.2.x-dev"
  2220. }
  2221. },
  2222. "autoload": {
  2223. "psr-4": {
  2224. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  2225. }
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "BSD-3-Clause"
  2230. ],
  2231. "authors": [
  2232. {
  2233. "name": "Tijs Verkoyen",
  2234. "email": "css_to_inline_styles@verkoyen.eu",
  2235. "role": "Developer"
  2236. }
  2237. ],
  2238. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  2239. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  2240. "time": "2017-11-27T11:13:29+00:00"
  2241. },
  2242. {
  2243. "name": "vlucas/phpdotenv",
  2244. "version": "v2.5.1",
  2245. "source": {
  2246. "type": "git",
  2247. "url": "https://github.com/vlucas/phpdotenv.git",
  2248. "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e"
  2249. },
  2250. "dist": {
  2251. "type": "zip",
  2252. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
  2253. "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
  2254. "shasum": ""
  2255. },
  2256. "require": {
  2257. "php": ">=5.3.9"
  2258. },
  2259. "require-dev": {
  2260. "phpunit/phpunit": "^4.8.35 || ^5.0"
  2261. },
  2262. "type": "library",
  2263. "extra": {
  2264. "branch-alias": {
  2265. "dev-master": "2.5-dev"
  2266. }
  2267. },
  2268. "autoload": {
  2269. "psr-4": {
  2270. "Dotenv\\": "src/"
  2271. }
  2272. },
  2273. "notification-url": "https://packagist.org/downloads/",
  2274. "license": [
  2275. "BSD-3-Clause"
  2276. ],
  2277. "authors": [
  2278. {
  2279. "name": "Vance Lucas",
  2280. "email": "vance@vancelucas.com",
  2281. "homepage": "http://www.vancelucas.com"
  2282. }
  2283. ],
  2284. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2285. "keywords": [
  2286. "dotenv",
  2287. "env",
  2288. "environment"
  2289. ],
  2290. "time": "2018-07-29T20:33:41+00:00"
  2291. }
  2292. ],
  2293. "packages-dev": [
  2294. {
  2295. "name": "doctrine/instantiator",
  2296. "version": "1.1.0",
  2297. "source": {
  2298. "type": "git",
  2299. "url": "https://github.com/doctrine/instantiator.git",
  2300. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  2301. },
  2302. "dist": {
  2303. "type": "zip",
  2304. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  2305. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  2306. "shasum": ""
  2307. },
  2308. "require": {
  2309. "php": "^7.1"
  2310. },
  2311. "require-dev": {
  2312. "athletic/athletic": "~0.1.8",
  2313. "ext-pdo": "*",
  2314. "ext-phar": "*",
  2315. "phpunit/phpunit": "^6.2.3",
  2316. "squizlabs/php_codesniffer": "^3.0.2"
  2317. },
  2318. "type": "library",
  2319. "extra": {
  2320. "branch-alias": {
  2321. "dev-master": "1.2.x-dev"
  2322. }
  2323. },
  2324. "autoload": {
  2325. "psr-4": {
  2326. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2327. }
  2328. },
  2329. "notification-url": "https://packagist.org/downloads/",
  2330. "license": [
  2331. "MIT"
  2332. ],
  2333. "authors": [
  2334. {
  2335. "name": "Marco Pivetta",
  2336. "email": "ocramius@gmail.com",
  2337. "homepage": "http://ocramius.github.com/"
  2338. }
  2339. ],
  2340. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2341. "homepage": "https://github.com/doctrine/instantiator",
  2342. "keywords": [
  2343. "constructor",
  2344. "instantiate"
  2345. ],
  2346. "time": "2017-07-22T11:58:36+00:00"
  2347. },
  2348. {
  2349. "name": "filp/whoops",
  2350. "version": "2.2.1",
  2351. "source": {
  2352. "type": "git",
  2353. "url": "https://github.com/filp/whoops.git",
  2354. "reference": "e79cd403fb77fc8963a99ecc30e80ddd885b3311"
  2355. },
  2356. "dist": {
  2357. "type": "zip",
  2358. "url": "https://api.github.com/repos/filp/whoops/zipball/e79cd403fb77fc8963a99ecc30e80ddd885b3311",
  2359. "reference": "e79cd403fb77fc8963a99ecc30e80ddd885b3311",
  2360. "shasum": ""
  2361. },
  2362. "require": {
  2363. "php": "^5.5.9 || ^7.0",
  2364. "psr/log": "^1.0.1"
  2365. },
  2366. "require-dev": {
  2367. "mockery/mockery": "^0.9 || ^1.0",
  2368. "phpunit/phpunit": "^4.8.35 || ^5.7",
  2369. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  2370. },
  2371. "suggest": {
  2372. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  2373. "whoops/soap": "Formats errors as SOAP responses"
  2374. },
  2375. "type": "library",
  2376. "extra": {
  2377. "branch-alias": {
  2378. "dev-master": "2.2-dev"
  2379. }
  2380. },
  2381. "autoload": {
  2382. "psr-4": {
  2383. "Whoops\\": "src/Whoops/"
  2384. }
  2385. },
  2386. "notification-url": "https://packagist.org/downloads/",
  2387. "license": [
  2388. "MIT"
  2389. ],
  2390. "authors": [
  2391. {
  2392. "name": "Filipe Dobreira",
  2393. "homepage": "https://github.com/filp",
  2394. "role": "Developer"
  2395. }
  2396. ],
  2397. "description": "php error handling for cool kids",
  2398. "homepage": "https://filp.github.io/whoops/",
  2399. "keywords": [
  2400. "error",
  2401. "exception",
  2402. "handling",
  2403. "library",
  2404. "throwable",
  2405. "whoops"
  2406. ],
  2407. "time": "2018-06-30T13:14:06+00:00"
  2408. },
  2409. {
  2410. "name": "fzaninotto/faker",
  2411. "version": "v1.8.0",
  2412. "source": {
  2413. "type": "git",
  2414. "url": "https://github.com/fzaninotto/Faker.git",
  2415. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  2416. },
  2417. "dist": {
  2418. "type": "zip",
  2419. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  2420. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  2421. "shasum": ""
  2422. },
  2423. "require": {
  2424. "php": "^5.3.3 || ^7.0"
  2425. },
  2426. "require-dev": {
  2427. "ext-intl": "*",
  2428. "phpunit/phpunit": "^4.8.35 || ^5.7",
  2429. "squizlabs/php_codesniffer": "^1.5"
  2430. },
  2431. "type": "library",
  2432. "extra": {
  2433. "branch-alias": {
  2434. "dev-master": "1.8-dev"
  2435. }
  2436. },
  2437. "autoload": {
  2438. "psr-4": {
  2439. "Faker\\": "src/Faker/"
  2440. }
  2441. },
  2442. "notification-url": "https://packagist.org/downloads/",
  2443. "license": [
  2444. "MIT"
  2445. ],
  2446. "authors": [
  2447. {
  2448. "name": "François Zaninotto"
  2449. }
  2450. ],
  2451. "description": "Faker is a PHP library that generates fake data for you.",
  2452. "keywords": [
  2453. "data",
  2454. "faker",
  2455. "fixtures"
  2456. ],
  2457. "time": "2018-07-12T10:23:15+00:00"
  2458. },
  2459. {
  2460. "name": "hamcrest/hamcrest-php",
  2461. "version": "v2.0.0",
  2462. "source": {
  2463. "type": "git",
  2464. "url": "https://github.com/hamcrest/hamcrest-php.git",
  2465. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  2466. },
  2467. "dist": {
  2468. "type": "zip",
  2469. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  2470. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  2471. "shasum": ""
  2472. },
  2473. "require": {
  2474. "php": "^5.3|^7.0"
  2475. },
  2476. "replace": {
  2477. "cordoval/hamcrest-php": "*",
  2478. "davedevelopment/hamcrest-php": "*",
  2479. "kodova/hamcrest-php": "*"
  2480. },
  2481. "require-dev": {
  2482. "phpunit/php-file-iterator": "1.3.3",
  2483. "phpunit/phpunit": "~4.0",
  2484. "satooshi/php-coveralls": "^1.0"
  2485. },
  2486. "type": "library",
  2487. "extra": {
  2488. "branch-alias": {
  2489. "dev-master": "2.0-dev"
  2490. }
  2491. },
  2492. "autoload": {
  2493. "classmap": [
  2494. "hamcrest"
  2495. ]
  2496. },
  2497. "notification-url": "https://packagist.org/downloads/",
  2498. "license": [
  2499. "BSD"
  2500. ],
  2501. "description": "This is the PHP port of Hamcrest Matchers",
  2502. "keywords": [
  2503. "test"
  2504. ],
  2505. "time": "2016-01-20T08:20:44+00:00"
  2506. },
  2507. {
  2508. "name": "mockery/mockery",
  2509. "version": "1.1.0",
  2510. "source": {
  2511. "type": "git",
  2512. "url": "https://github.com/mockery/mockery.git",
  2513. "reference": "99e29d3596b16dabe4982548527d5ddf90232e99"
  2514. },
  2515. "dist": {
  2516. "type": "zip",
  2517. "url": "https://api.github.com/repos/mockery/mockery/zipball/99e29d3596b16dabe4982548527d5ddf90232e99",
  2518. "reference": "99e29d3596b16dabe4982548527d5ddf90232e99",
  2519. "shasum": ""
  2520. },
  2521. "require": {
  2522. "hamcrest/hamcrest-php": "~2.0",
  2523. "lib-pcre": ">=7.0",
  2524. "php": ">=5.6.0"
  2525. },
  2526. "require-dev": {
  2527. "phpdocumentor/phpdocumentor": "^2.9",
  2528. "phpunit/phpunit": "~5.7.10|~6.5"
  2529. },
  2530. "type": "library",
  2531. "extra": {
  2532. "branch-alias": {
  2533. "dev-master": "1.0.x-dev"
  2534. }
  2535. },
  2536. "autoload": {
  2537. "psr-0": {
  2538. "Mockery": "library/"
  2539. }
  2540. },
  2541. "notification-url": "https://packagist.org/downloads/",
  2542. "license": [
  2543. "BSD-3-Clause"
  2544. ],
  2545. "authors": [
  2546. {
  2547. "name": "Pádraic Brady",
  2548. "email": "padraic.brady@gmail.com",
  2549. "homepage": "http://blog.astrumfutura.com"
  2550. },
  2551. {
  2552. "name": "Dave Marshall",
  2553. "email": "dave.marshall@atstsolutions.co.uk",
  2554. "homepage": "http://davedevelopment.co.uk"
  2555. }
  2556. ],
  2557. "description": "Mockery is a simple yet flexible PHP mock object framework",
  2558. "homepage": "https://github.com/mockery/mockery",
  2559. "keywords": [
  2560. "BDD",
  2561. "TDD",
  2562. "library",
  2563. "mock",
  2564. "mock objects",
  2565. "mockery",
  2566. "stub",
  2567. "test",
  2568. "test double",
  2569. "testing"
  2570. ],
  2571. "time": "2018-05-08T08:54:48+00:00"
  2572. },
  2573. {
  2574. "name": "myclabs/deep-copy",
  2575. "version": "1.8.1",
  2576. "source": {
  2577. "type": "git",
  2578. "url": "https://github.com/myclabs/DeepCopy.git",
  2579. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  2580. },
  2581. "dist": {
  2582. "type": "zip",
  2583. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  2584. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  2585. "shasum": ""
  2586. },
  2587. "require": {
  2588. "php": "^7.1"
  2589. },
  2590. "replace": {
  2591. "myclabs/deep-copy": "self.version"
  2592. },
  2593. "require-dev": {
  2594. "doctrine/collections": "^1.0",
  2595. "doctrine/common": "^2.6",
  2596. "phpunit/phpunit": "^7.1"
  2597. },
  2598. "type": "library",
  2599. "autoload": {
  2600. "psr-4": {
  2601. "DeepCopy\\": "src/DeepCopy/"
  2602. },
  2603. "files": [
  2604. "src/DeepCopy/deep_copy.php"
  2605. ]
  2606. },
  2607. "notification-url": "https://packagist.org/downloads/",
  2608. "license": [
  2609. "MIT"
  2610. ],
  2611. "description": "Create deep copies (clones) of your objects",
  2612. "keywords": [
  2613. "clone",
  2614. "copy",
  2615. "duplicate",
  2616. "object",
  2617. "object graph"
  2618. ],
  2619. "time": "2018-06-11T23:09:50+00:00"
  2620. },
  2621. {
  2622. "name": "phar-io/manifest",
  2623. "version": "1.0.1",
  2624. "source": {
  2625. "type": "git",
  2626. "url": "https://github.com/phar-io/manifest.git",
  2627. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  2628. },
  2629. "dist": {
  2630. "type": "zip",
  2631. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  2632. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  2633. "shasum": ""
  2634. },
  2635. "require": {
  2636. "ext-dom": "*",
  2637. "ext-phar": "*",
  2638. "phar-io/version": "^1.0.1",
  2639. "php": "^5.6 || ^7.0"
  2640. },
  2641. "type": "library",
  2642. "extra": {
  2643. "branch-alias": {
  2644. "dev-master": "1.0.x-dev"
  2645. }
  2646. },
  2647. "autoload": {
  2648. "classmap": [
  2649. "src/"
  2650. ]
  2651. },
  2652. "notification-url": "https://packagist.org/downloads/",
  2653. "license": [
  2654. "BSD-3-Clause"
  2655. ],
  2656. "authors": [
  2657. {
  2658. "name": "Arne Blankerts",
  2659. "email": "arne@blankerts.de",
  2660. "role": "Developer"
  2661. },
  2662. {
  2663. "name": "Sebastian Heuer",
  2664. "email": "sebastian@phpeople.de",
  2665. "role": "Developer"
  2666. },
  2667. {
  2668. "name": "Sebastian Bergmann",
  2669. "email": "sebastian@phpunit.de",
  2670. "role": "Developer"
  2671. }
  2672. ],
  2673. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2674. "time": "2017-03-05T18:14:27+00:00"
  2675. },
  2676. {
  2677. "name": "phar-io/version",
  2678. "version": "1.0.1",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://github.com/phar-io/version.git",
  2682. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  2687. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  2688. "shasum": ""
  2689. },
  2690. "require": {
  2691. "php": "^5.6 || ^7.0"
  2692. },
  2693. "type": "library",
  2694. "autoload": {
  2695. "classmap": [
  2696. "src/"
  2697. ]
  2698. },
  2699. "notification-url": "https://packagist.org/downloads/",
  2700. "license": [
  2701. "BSD-3-Clause"
  2702. ],
  2703. "authors": [
  2704. {
  2705. "name": "Arne Blankerts",
  2706. "email": "arne@blankerts.de",
  2707. "role": "Developer"
  2708. },
  2709. {
  2710. "name": "Sebastian Heuer",
  2711. "email": "sebastian@phpeople.de",
  2712. "role": "Developer"
  2713. },
  2714. {
  2715. "name": "Sebastian Bergmann",
  2716. "email": "sebastian@phpunit.de",
  2717. "role": "Developer"
  2718. }
  2719. ],
  2720. "description": "Library for handling version information and constraints",
  2721. "time": "2017-03-05T17:38:23+00:00"
  2722. },
  2723. {
  2724. "name": "phpdocumentor/reflection-common",
  2725. "version": "1.0.1",
  2726. "source": {
  2727. "type": "git",
  2728. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2729. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  2730. },
  2731. "dist": {
  2732. "type": "zip",
  2733. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2734. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2735. "shasum": ""
  2736. },
  2737. "require": {
  2738. "php": ">=5.5"
  2739. },
  2740. "require-dev": {
  2741. "phpunit/phpunit": "^4.6"
  2742. },
  2743. "type": "library",
  2744. "extra": {
  2745. "branch-alias": {
  2746. "dev-master": "1.0.x-dev"
  2747. }
  2748. },
  2749. "autoload": {
  2750. "psr-4": {
  2751. "phpDocumentor\\Reflection\\": [
  2752. "src"
  2753. ]
  2754. }
  2755. },
  2756. "notification-url": "https://packagist.org/downloads/",
  2757. "license": [
  2758. "MIT"
  2759. ],
  2760. "authors": [
  2761. {
  2762. "name": "Jaap van Otterdijk",
  2763. "email": "opensource@ijaap.nl"
  2764. }
  2765. ],
  2766. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2767. "homepage": "http://www.phpdoc.org",
  2768. "keywords": [
  2769. "FQSEN",
  2770. "phpDocumentor",
  2771. "phpdoc",
  2772. "reflection",
  2773. "static analysis"
  2774. ],
  2775. "time": "2017-09-11T18:02:19+00:00"
  2776. },
  2777. {
  2778. "name": "phpdocumentor/reflection-docblock",
  2779. "version": "4.3.0",
  2780. "source": {
  2781. "type": "git",
  2782. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2783. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  2784. },
  2785. "dist": {
  2786. "type": "zip",
  2787. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  2788. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  2789. "shasum": ""
  2790. },
  2791. "require": {
  2792. "php": "^7.0",
  2793. "phpdocumentor/reflection-common": "^1.0.0",
  2794. "phpdocumentor/type-resolver": "^0.4.0",
  2795. "webmozart/assert": "^1.0"
  2796. },
  2797. "require-dev": {
  2798. "doctrine/instantiator": "~1.0.5",
  2799. "mockery/mockery": "^1.0",
  2800. "phpunit/phpunit": "^6.4"
  2801. },
  2802. "type": "library",
  2803. "extra": {
  2804. "branch-alias": {
  2805. "dev-master": "4.x-dev"
  2806. }
  2807. },
  2808. "autoload": {
  2809. "psr-4": {
  2810. "phpDocumentor\\Reflection\\": [
  2811. "src/"
  2812. ]
  2813. }
  2814. },
  2815. "notification-url": "https://packagist.org/downloads/",
  2816. "license": [
  2817. "MIT"
  2818. ],
  2819. "authors": [
  2820. {
  2821. "name": "Mike van Riel",
  2822. "email": "me@mikevanriel.com"
  2823. }
  2824. ],
  2825. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2826. "time": "2017-11-30T07:14:17+00:00"
  2827. },
  2828. {
  2829. "name": "phpdocumentor/type-resolver",
  2830. "version": "0.4.0",
  2831. "source": {
  2832. "type": "git",
  2833. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2834. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  2835. },
  2836. "dist": {
  2837. "type": "zip",
  2838. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  2839. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  2840. "shasum": ""
  2841. },
  2842. "require": {
  2843. "php": "^5.5 || ^7.0",
  2844. "phpdocumentor/reflection-common": "^1.0"
  2845. },
  2846. "require-dev": {
  2847. "mockery/mockery": "^0.9.4",
  2848. "phpunit/phpunit": "^5.2||^4.8.24"
  2849. },
  2850. "type": "library",
  2851. "extra": {
  2852. "branch-alias": {
  2853. "dev-master": "1.0.x-dev"
  2854. }
  2855. },
  2856. "autoload": {
  2857. "psr-4": {
  2858. "phpDocumentor\\Reflection\\": [
  2859. "src/"
  2860. ]
  2861. }
  2862. },
  2863. "notification-url": "https://packagist.org/downloads/",
  2864. "license": [
  2865. "MIT"
  2866. ],
  2867. "authors": [
  2868. {
  2869. "name": "Mike van Riel",
  2870. "email": "me@mikevanriel.com"
  2871. }
  2872. ],
  2873. "time": "2017-07-14T14:27:02+00:00"
  2874. },
  2875. {
  2876. "name": "phpspec/prophecy",
  2877. "version": "1.8.0",
  2878. "source": {
  2879. "type": "git",
  2880. "url": "https://github.com/phpspec/prophecy.git",
  2881. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  2882. },
  2883. "dist": {
  2884. "type": "zip",
  2885. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  2886. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  2887. "shasum": ""
  2888. },
  2889. "require": {
  2890. "doctrine/instantiator": "^1.0.2",
  2891. "php": "^5.3|^7.0",
  2892. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  2893. "sebastian/comparator": "^1.1|^2.0|^3.0",
  2894. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  2895. },
  2896. "require-dev": {
  2897. "phpspec/phpspec": "^2.5|^3.2",
  2898. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  2899. },
  2900. "type": "library",
  2901. "extra": {
  2902. "branch-alias": {
  2903. "dev-master": "1.8.x-dev"
  2904. }
  2905. },
  2906. "autoload": {
  2907. "psr-0": {
  2908. "Prophecy\\": "src/"
  2909. }
  2910. },
  2911. "notification-url": "https://packagist.org/downloads/",
  2912. "license": [
  2913. "MIT"
  2914. ],
  2915. "authors": [
  2916. {
  2917. "name": "Konstantin Kudryashov",
  2918. "email": "ever.zet@gmail.com",
  2919. "homepage": "http://everzet.com"
  2920. },
  2921. {
  2922. "name": "Marcello Duarte",
  2923. "email": "marcello.duarte@gmail.com"
  2924. }
  2925. ],
  2926. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2927. "homepage": "https://github.com/phpspec/prophecy",
  2928. "keywords": [
  2929. "Double",
  2930. "Dummy",
  2931. "fake",
  2932. "mock",
  2933. "spy",
  2934. "stub"
  2935. ],
  2936. "time": "2018-08-05T17:53:17+00:00"
  2937. },
  2938. {
  2939. "name": "phpunit/php-code-coverage",
  2940. "version": "5.3.2",
  2941. "source": {
  2942. "type": "git",
  2943. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2944. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  2945. },
  2946. "dist": {
  2947. "type": "zip",
  2948. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  2949. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  2950. "shasum": ""
  2951. },
  2952. "require": {
  2953. "ext-dom": "*",
  2954. "ext-xmlwriter": "*",
  2955. "php": "^7.0",
  2956. "phpunit/php-file-iterator": "^1.4.2",
  2957. "phpunit/php-text-template": "^1.2.1",
  2958. "phpunit/php-token-stream": "^2.0.1",
  2959. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  2960. "sebastian/environment": "^3.0",
  2961. "sebastian/version": "^2.0.1",
  2962. "theseer/tokenizer": "^1.1"
  2963. },
  2964. "require-dev": {
  2965. "phpunit/phpunit": "^6.0"
  2966. },
  2967. "suggest": {
  2968. "ext-xdebug": "^2.5.5"
  2969. },
  2970. "type": "library",
  2971. "extra": {
  2972. "branch-alias": {
  2973. "dev-master": "5.3.x-dev"
  2974. }
  2975. },
  2976. "autoload": {
  2977. "classmap": [
  2978. "src/"
  2979. ]
  2980. },
  2981. "notification-url": "https://packagist.org/downloads/",
  2982. "license": [
  2983. "BSD-3-Clause"
  2984. ],
  2985. "authors": [
  2986. {
  2987. "name": "Sebastian Bergmann",
  2988. "email": "sebastian@phpunit.de",
  2989. "role": "lead"
  2990. }
  2991. ],
  2992. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2993. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2994. "keywords": [
  2995. "coverage",
  2996. "testing",
  2997. "xunit"
  2998. ],
  2999. "time": "2018-04-06T15:36:58+00:00"
  3000. },
  3001. {
  3002. "name": "phpunit/php-file-iterator",
  3003. "version": "1.4.5",
  3004. "source": {
  3005. "type": "git",
  3006. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3007. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  3008. },
  3009. "dist": {
  3010. "type": "zip",
  3011. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  3012. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  3013. "shasum": ""
  3014. },
  3015. "require": {
  3016. "php": ">=5.3.3"
  3017. },
  3018. "type": "library",
  3019. "extra": {
  3020. "branch-alias": {
  3021. "dev-master": "1.4.x-dev"
  3022. }
  3023. },
  3024. "autoload": {
  3025. "classmap": [
  3026. "src/"
  3027. ]
  3028. },
  3029. "notification-url": "https://packagist.org/downloads/",
  3030. "license": [
  3031. "BSD-3-Clause"
  3032. ],
  3033. "authors": [
  3034. {
  3035. "name": "Sebastian Bergmann",
  3036. "email": "sb@sebastian-bergmann.de",
  3037. "role": "lead"
  3038. }
  3039. ],
  3040. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3041. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3042. "keywords": [
  3043. "filesystem",
  3044. "iterator"
  3045. ],
  3046. "time": "2017-11-27T13:52:08+00:00"
  3047. },
  3048. {
  3049. "name": "phpunit/php-text-template",
  3050. "version": "1.2.1",
  3051. "source": {
  3052. "type": "git",
  3053. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3054. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3055. },
  3056. "dist": {
  3057. "type": "zip",
  3058. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3059. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3060. "shasum": ""
  3061. },
  3062. "require": {
  3063. "php": ">=5.3.3"
  3064. },
  3065. "type": "library",
  3066. "autoload": {
  3067. "classmap": [
  3068. "src/"
  3069. ]
  3070. },
  3071. "notification-url": "https://packagist.org/downloads/",
  3072. "license": [
  3073. "BSD-3-Clause"
  3074. ],
  3075. "authors": [
  3076. {
  3077. "name": "Sebastian Bergmann",
  3078. "email": "sebastian@phpunit.de",
  3079. "role": "lead"
  3080. }
  3081. ],
  3082. "description": "Simple template engine.",
  3083. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3084. "keywords": [
  3085. "template"
  3086. ],
  3087. "time": "2015-06-21T13:50:34+00:00"
  3088. },
  3089. {
  3090. "name": "phpunit/php-timer",
  3091. "version": "1.0.9",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3095. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  3100. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "php": "^5.3.3 || ^7.0"
  3105. },
  3106. "require-dev": {
  3107. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3108. },
  3109. "type": "library",
  3110. "extra": {
  3111. "branch-alias": {
  3112. "dev-master": "1.0-dev"
  3113. }
  3114. },
  3115. "autoload": {
  3116. "classmap": [
  3117. "src/"
  3118. ]
  3119. },
  3120. "notification-url": "https://packagist.org/downloads/",
  3121. "license": [
  3122. "BSD-3-Clause"
  3123. ],
  3124. "authors": [
  3125. {
  3126. "name": "Sebastian Bergmann",
  3127. "email": "sb@sebastian-bergmann.de",
  3128. "role": "lead"
  3129. }
  3130. ],
  3131. "description": "Utility class for timing",
  3132. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3133. "keywords": [
  3134. "timer"
  3135. ],
  3136. "time": "2017-02-26T11:10:40+00:00"
  3137. },
  3138. {
  3139. "name": "phpunit/php-token-stream",
  3140. "version": "2.0.2",
  3141. "source": {
  3142. "type": "git",
  3143. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3144. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  3145. },
  3146. "dist": {
  3147. "type": "zip",
  3148. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  3149. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  3150. "shasum": ""
  3151. },
  3152. "require": {
  3153. "ext-tokenizer": "*",
  3154. "php": "^7.0"
  3155. },
  3156. "require-dev": {
  3157. "phpunit/phpunit": "^6.2.4"
  3158. },
  3159. "type": "library",
  3160. "extra": {
  3161. "branch-alias": {
  3162. "dev-master": "2.0-dev"
  3163. }
  3164. },
  3165. "autoload": {
  3166. "classmap": [
  3167. "src/"
  3168. ]
  3169. },
  3170. "notification-url": "https://packagist.org/downloads/",
  3171. "license": [
  3172. "BSD-3-Clause"
  3173. ],
  3174. "authors": [
  3175. {
  3176. "name": "Sebastian Bergmann",
  3177. "email": "sebastian@phpunit.de"
  3178. }
  3179. ],
  3180. "description": "Wrapper around PHP's tokenizer extension.",
  3181. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3182. "keywords": [
  3183. "tokenizer"
  3184. ],
  3185. "time": "2017-11-27T05:48:46+00:00"
  3186. },
  3187. {
  3188. "name": "phpunit/phpunit",
  3189. "version": "6.5.13",
  3190. "source": {
  3191. "type": "git",
  3192. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3193. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  3194. },
  3195. "dist": {
  3196. "type": "zip",
  3197. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  3198. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  3199. "shasum": ""
  3200. },
  3201. "require": {
  3202. "ext-dom": "*",
  3203. "ext-json": "*",
  3204. "ext-libxml": "*",
  3205. "ext-mbstring": "*",
  3206. "ext-xml": "*",
  3207. "myclabs/deep-copy": "^1.6.1",
  3208. "phar-io/manifest": "^1.0.1",
  3209. "phar-io/version": "^1.0",
  3210. "php": "^7.0",
  3211. "phpspec/prophecy": "^1.7",
  3212. "phpunit/php-code-coverage": "^5.3",
  3213. "phpunit/php-file-iterator": "^1.4.3",
  3214. "phpunit/php-text-template": "^1.2.1",
  3215. "phpunit/php-timer": "^1.0.9",
  3216. "phpunit/phpunit-mock-objects": "^5.0.9",
  3217. "sebastian/comparator": "^2.1",
  3218. "sebastian/diff": "^2.0",
  3219. "sebastian/environment": "^3.1",
  3220. "sebastian/exporter": "^3.1",
  3221. "sebastian/global-state": "^2.0",
  3222. "sebastian/object-enumerator": "^3.0.3",
  3223. "sebastian/resource-operations": "^1.0",
  3224. "sebastian/version": "^2.0.1"
  3225. },
  3226. "conflict": {
  3227. "phpdocumentor/reflection-docblock": "3.0.2",
  3228. "phpunit/dbunit": "<3.0"
  3229. },
  3230. "require-dev": {
  3231. "ext-pdo": "*"
  3232. },
  3233. "suggest": {
  3234. "ext-xdebug": "*",
  3235. "phpunit/php-invoker": "^1.1"
  3236. },
  3237. "bin": [
  3238. "phpunit"
  3239. ],
  3240. "type": "library",
  3241. "extra": {
  3242. "branch-alias": {
  3243. "dev-master": "6.5.x-dev"
  3244. }
  3245. },
  3246. "autoload": {
  3247. "classmap": [
  3248. "src/"
  3249. ]
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "BSD-3-Clause"
  3254. ],
  3255. "authors": [
  3256. {
  3257. "name": "Sebastian Bergmann",
  3258. "email": "sebastian@phpunit.de",
  3259. "role": "lead"
  3260. }
  3261. ],
  3262. "description": "The PHP Unit Testing framework.",
  3263. "homepage": "https://phpunit.de/",
  3264. "keywords": [
  3265. "phpunit",
  3266. "testing",
  3267. "xunit"
  3268. ],
  3269. "time": "2018-09-08T15:10:43+00:00"
  3270. },
  3271. {
  3272. "name": "phpunit/phpunit-mock-objects",
  3273. "version": "5.0.10",
  3274. "source": {
  3275. "type": "git",
  3276. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  3277. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  3278. },
  3279. "dist": {
  3280. "type": "zip",
  3281. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  3282. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  3283. "shasum": ""
  3284. },
  3285. "require": {
  3286. "doctrine/instantiator": "^1.0.5",
  3287. "php": "^7.0",
  3288. "phpunit/php-text-template": "^1.2.1",
  3289. "sebastian/exporter": "^3.1"
  3290. },
  3291. "conflict": {
  3292. "phpunit/phpunit": "<6.0"
  3293. },
  3294. "require-dev": {
  3295. "phpunit/phpunit": "^6.5.11"
  3296. },
  3297. "suggest": {
  3298. "ext-soap": "*"
  3299. },
  3300. "type": "library",
  3301. "extra": {
  3302. "branch-alias": {
  3303. "dev-master": "5.0.x-dev"
  3304. }
  3305. },
  3306. "autoload": {
  3307. "classmap": [
  3308. "src/"
  3309. ]
  3310. },
  3311. "notification-url": "https://packagist.org/downloads/",
  3312. "license": [
  3313. "BSD-3-Clause"
  3314. ],
  3315. "authors": [
  3316. {
  3317. "name": "Sebastian Bergmann",
  3318. "email": "sebastian@phpunit.de",
  3319. "role": "lead"
  3320. }
  3321. ],
  3322. "description": "Mock Object library for PHPUnit",
  3323. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  3324. "keywords": [
  3325. "mock",
  3326. "xunit"
  3327. ],
  3328. "time": "2018-08-09T05:50:03+00:00"
  3329. },
  3330. {
  3331. "name": "sebastian/code-unit-reverse-lookup",
  3332. "version": "1.0.1",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3336. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3341. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3342. "shasum": ""
  3343. },
  3344. "require": {
  3345. "php": "^5.6 || ^7.0"
  3346. },
  3347. "require-dev": {
  3348. "phpunit/phpunit": "^5.7 || ^6.0"
  3349. },
  3350. "type": "library",
  3351. "extra": {
  3352. "branch-alias": {
  3353. "dev-master": "1.0.x-dev"
  3354. }
  3355. },
  3356. "autoload": {
  3357. "classmap": [
  3358. "src/"
  3359. ]
  3360. },
  3361. "notification-url": "https://packagist.org/downloads/",
  3362. "license": [
  3363. "BSD-3-Clause"
  3364. ],
  3365. "authors": [
  3366. {
  3367. "name": "Sebastian Bergmann",
  3368. "email": "sebastian@phpunit.de"
  3369. }
  3370. ],
  3371. "description": "Looks up which function or method a line of code belongs to",
  3372. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3373. "time": "2017-03-04T06:30:41+00:00"
  3374. },
  3375. {
  3376. "name": "sebastian/comparator",
  3377. "version": "2.1.3",
  3378. "source": {
  3379. "type": "git",
  3380. "url": "https://github.com/sebastianbergmann/comparator.git",
  3381. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  3382. },
  3383. "dist": {
  3384. "type": "zip",
  3385. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  3386. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  3387. "shasum": ""
  3388. },
  3389. "require": {
  3390. "php": "^7.0",
  3391. "sebastian/diff": "^2.0 || ^3.0",
  3392. "sebastian/exporter": "^3.1"
  3393. },
  3394. "require-dev": {
  3395. "phpunit/phpunit": "^6.4"
  3396. },
  3397. "type": "library",
  3398. "extra": {
  3399. "branch-alias": {
  3400. "dev-master": "2.1.x-dev"
  3401. }
  3402. },
  3403. "autoload": {
  3404. "classmap": [
  3405. "src/"
  3406. ]
  3407. },
  3408. "notification-url": "https://packagist.org/downloads/",
  3409. "license": [
  3410. "BSD-3-Clause"
  3411. ],
  3412. "authors": [
  3413. {
  3414. "name": "Jeff Welch",
  3415. "email": "whatthejeff@gmail.com"
  3416. },
  3417. {
  3418. "name": "Volker Dusch",
  3419. "email": "github@wallbash.com"
  3420. },
  3421. {
  3422. "name": "Bernhard Schussek",
  3423. "email": "bschussek@2bepublished.at"
  3424. },
  3425. {
  3426. "name": "Sebastian Bergmann",
  3427. "email": "sebastian@phpunit.de"
  3428. }
  3429. ],
  3430. "description": "Provides the functionality to compare PHP values for equality",
  3431. "homepage": "https://github.com/sebastianbergmann/comparator",
  3432. "keywords": [
  3433. "comparator",
  3434. "compare",
  3435. "equality"
  3436. ],
  3437. "time": "2018-02-01T13:46:46+00:00"
  3438. },
  3439. {
  3440. "name": "sebastian/diff",
  3441. "version": "2.0.1",
  3442. "source": {
  3443. "type": "git",
  3444. "url": "https://github.com/sebastianbergmann/diff.git",
  3445. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  3446. },
  3447. "dist": {
  3448. "type": "zip",
  3449. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  3450. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  3451. "shasum": ""
  3452. },
  3453. "require": {
  3454. "php": "^7.0"
  3455. },
  3456. "require-dev": {
  3457. "phpunit/phpunit": "^6.2"
  3458. },
  3459. "type": "library",
  3460. "extra": {
  3461. "branch-alias": {
  3462. "dev-master": "2.0-dev"
  3463. }
  3464. },
  3465. "autoload": {
  3466. "classmap": [
  3467. "src/"
  3468. ]
  3469. },
  3470. "notification-url": "https://packagist.org/downloads/",
  3471. "license": [
  3472. "BSD-3-Clause"
  3473. ],
  3474. "authors": [
  3475. {
  3476. "name": "Kore Nordmann",
  3477. "email": "mail@kore-nordmann.de"
  3478. },
  3479. {
  3480. "name": "Sebastian Bergmann",
  3481. "email": "sebastian@phpunit.de"
  3482. }
  3483. ],
  3484. "description": "Diff implementation",
  3485. "homepage": "https://github.com/sebastianbergmann/diff",
  3486. "keywords": [
  3487. "diff"
  3488. ],
  3489. "time": "2017-08-03T08:09:46+00:00"
  3490. },
  3491. {
  3492. "name": "sebastian/environment",
  3493. "version": "3.1.0",
  3494. "source": {
  3495. "type": "git",
  3496. "url": "https://github.com/sebastianbergmann/environment.git",
  3497. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  3498. },
  3499. "dist": {
  3500. "type": "zip",
  3501. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  3502. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  3503. "shasum": ""
  3504. },
  3505. "require": {
  3506. "php": "^7.0"
  3507. },
  3508. "require-dev": {
  3509. "phpunit/phpunit": "^6.1"
  3510. },
  3511. "type": "library",
  3512. "extra": {
  3513. "branch-alias": {
  3514. "dev-master": "3.1.x-dev"
  3515. }
  3516. },
  3517. "autoload": {
  3518. "classmap": [
  3519. "src/"
  3520. ]
  3521. },
  3522. "notification-url": "https://packagist.org/downloads/",
  3523. "license": [
  3524. "BSD-3-Clause"
  3525. ],
  3526. "authors": [
  3527. {
  3528. "name": "Sebastian Bergmann",
  3529. "email": "sebastian@phpunit.de"
  3530. }
  3531. ],
  3532. "description": "Provides functionality to handle HHVM/PHP environments",
  3533. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3534. "keywords": [
  3535. "Xdebug",
  3536. "environment",
  3537. "hhvm"
  3538. ],
  3539. "time": "2017-07-01T08:51:00+00:00"
  3540. },
  3541. {
  3542. "name": "sebastian/exporter",
  3543. "version": "3.1.0",
  3544. "source": {
  3545. "type": "git",
  3546. "url": "https://github.com/sebastianbergmann/exporter.git",
  3547. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  3548. },
  3549. "dist": {
  3550. "type": "zip",
  3551. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  3552. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  3553. "shasum": ""
  3554. },
  3555. "require": {
  3556. "php": "^7.0",
  3557. "sebastian/recursion-context": "^3.0"
  3558. },
  3559. "require-dev": {
  3560. "ext-mbstring": "*",
  3561. "phpunit/phpunit": "^6.0"
  3562. },
  3563. "type": "library",
  3564. "extra": {
  3565. "branch-alias": {
  3566. "dev-master": "3.1.x-dev"
  3567. }
  3568. },
  3569. "autoload": {
  3570. "classmap": [
  3571. "src/"
  3572. ]
  3573. },
  3574. "notification-url": "https://packagist.org/downloads/",
  3575. "license": [
  3576. "BSD-3-Clause"
  3577. ],
  3578. "authors": [
  3579. {
  3580. "name": "Jeff Welch",
  3581. "email": "whatthejeff@gmail.com"
  3582. },
  3583. {
  3584. "name": "Volker Dusch",
  3585. "email": "github@wallbash.com"
  3586. },
  3587. {
  3588. "name": "Bernhard Schussek",
  3589. "email": "bschussek@2bepublished.at"
  3590. },
  3591. {
  3592. "name": "Sebastian Bergmann",
  3593. "email": "sebastian@phpunit.de"
  3594. },
  3595. {
  3596. "name": "Adam Harvey",
  3597. "email": "aharvey@php.net"
  3598. }
  3599. ],
  3600. "description": "Provides the functionality to export PHP variables for visualization",
  3601. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3602. "keywords": [
  3603. "export",
  3604. "exporter"
  3605. ],
  3606. "time": "2017-04-03T13:19:02+00:00"
  3607. },
  3608. {
  3609. "name": "sebastian/global-state",
  3610. "version": "2.0.0",
  3611. "source": {
  3612. "type": "git",
  3613. "url": "https://github.com/sebastianbergmann/global-state.git",
  3614. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  3615. },
  3616. "dist": {
  3617. "type": "zip",
  3618. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3619. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3620. "shasum": ""
  3621. },
  3622. "require": {
  3623. "php": "^7.0"
  3624. },
  3625. "require-dev": {
  3626. "phpunit/phpunit": "^6.0"
  3627. },
  3628. "suggest": {
  3629. "ext-uopz": "*"
  3630. },
  3631. "type": "library",
  3632. "extra": {
  3633. "branch-alias": {
  3634. "dev-master": "2.0-dev"
  3635. }
  3636. },
  3637. "autoload": {
  3638. "classmap": [
  3639. "src/"
  3640. ]
  3641. },
  3642. "notification-url": "https://packagist.org/downloads/",
  3643. "license": [
  3644. "BSD-3-Clause"
  3645. ],
  3646. "authors": [
  3647. {
  3648. "name": "Sebastian Bergmann",
  3649. "email": "sebastian@phpunit.de"
  3650. }
  3651. ],
  3652. "description": "Snapshotting of global state",
  3653. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3654. "keywords": [
  3655. "global state"
  3656. ],
  3657. "time": "2017-04-27T15:39:26+00:00"
  3658. },
  3659. {
  3660. "name": "sebastian/object-enumerator",
  3661. "version": "3.0.3",
  3662. "source": {
  3663. "type": "git",
  3664. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3665. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  3666. },
  3667. "dist": {
  3668. "type": "zip",
  3669. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3670. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3671. "shasum": ""
  3672. },
  3673. "require": {
  3674. "php": "^7.0",
  3675. "sebastian/object-reflector": "^1.1.1",
  3676. "sebastian/recursion-context": "^3.0"
  3677. },
  3678. "require-dev": {
  3679. "phpunit/phpunit": "^6.0"
  3680. },
  3681. "type": "library",
  3682. "extra": {
  3683. "branch-alias": {
  3684. "dev-master": "3.0.x-dev"
  3685. }
  3686. },
  3687. "autoload": {
  3688. "classmap": [
  3689. "src/"
  3690. ]
  3691. },
  3692. "notification-url": "https://packagist.org/downloads/",
  3693. "license": [
  3694. "BSD-3-Clause"
  3695. ],
  3696. "authors": [
  3697. {
  3698. "name": "Sebastian Bergmann",
  3699. "email": "sebastian@phpunit.de"
  3700. }
  3701. ],
  3702. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3703. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3704. "time": "2017-08-03T12:35:26+00:00"
  3705. },
  3706. {
  3707. "name": "sebastian/object-reflector",
  3708. "version": "1.1.1",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  3712. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  3717. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  3718. "shasum": ""
  3719. },
  3720. "require": {
  3721. "php": "^7.0"
  3722. },
  3723. "require-dev": {
  3724. "phpunit/phpunit": "^6.0"
  3725. },
  3726. "type": "library",
  3727. "extra": {
  3728. "branch-alias": {
  3729. "dev-master": "1.1-dev"
  3730. }
  3731. },
  3732. "autoload": {
  3733. "classmap": [
  3734. "src/"
  3735. ]
  3736. },
  3737. "notification-url": "https://packagist.org/downloads/",
  3738. "license": [
  3739. "BSD-3-Clause"
  3740. ],
  3741. "authors": [
  3742. {
  3743. "name": "Sebastian Bergmann",
  3744. "email": "sebastian@phpunit.de"
  3745. }
  3746. ],
  3747. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  3748. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  3749. "time": "2017-03-29T09:07:27+00:00"
  3750. },
  3751. {
  3752. "name": "sebastian/recursion-context",
  3753. "version": "3.0.0",
  3754. "source": {
  3755. "type": "git",
  3756. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3757. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  3758. },
  3759. "dist": {
  3760. "type": "zip",
  3761. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  3762. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  3763. "shasum": ""
  3764. },
  3765. "require": {
  3766. "php": "^7.0"
  3767. },
  3768. "require-dev": {
  3769. "phpunit/phpunit": "^6.0"
  3770. },
  3771. "type": "library",
  3772. "extra": {
  3773. "branch-alias": {
  3774. "dev-master": "3.0.x-dev"
  3775. }
  3776. },
  3777. "autoload": {
  3778. "classmap": [
  3779. "src/"
  3780. ]
  3781. },
  3782. "notification-url": "https://packagist.org/downloads/",
  3783. "license": [
  3784. "BSD-3-Clause"
  3785. ],
  3786. "authors": [
  3787. {
  3788. "name": "Jeff Welch",
  3789. "email": "whatthejeff@gmail.com"
  3790. },
  3791. {
  3792. "name": "Sebastian Bergmann",
  3793. "email": "sebastian@phpunit.de"
  3794. },
  3795. {
  3796. "name": "Adam Harvey",
  3797. "email": "aharvey@php.net"
  3798. }
  3799. ],
  3800. "description": "Provides functionality to recursively process PHP variables",
  3801. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3802. "time": "2017-03-03T06:23:57+00:00"
  3803. },
  3804. {
  3805. "name": "sebastian/resource-operations",
  3806. "version": "1.0.0",
  3807. "source": {
  3808. "type": "git",
  3809. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  3810. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  3811. },
  3812. "dist": {
  3813. "type": "zip",
  3814. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  3815. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  3816. "shasum": ""
  3817. },
  3818. "require": {
  3819. "php": ">=5.6.0"
  3820. },
  3821. "type": "library",
  3822. "extra": {
  3823. "branch-alias": {
  3824. "dev-master": "1.0.x-dev"
  3825. }
  3826. },
  3827. "autoload": {
  3828. "classmap": [
  3829. "src/"
  3830. ]
  3831. },
  3832. "notification-url": "https://packagist.org/downloads/",
  3833. "license": [
  3834. "BSD-3-Clause"
  3835. ],
  3836. "authors": [
  3837. {
  3838. "name": "Sebastian Bergmann",
  3839. "email": "sebastian@phpunit.de"
  3840. }
  3841. ],
  3842. "description": "Provides a list of PHP built-in functions that operate on resources",
  3843. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  3844. "time": "2015-07-28T20:34:47+00:00"
  3845. },
  3846. {
  3847. "name": "sebastian/version",
  3848. "version": "2.0.1",
  3849. "source": {
  3850. "type": "git",
  3851. "url": "https://github.com/sebastianbergmann/version.git",
  3852. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  3853. },
  3854. "dist": {
  3855. "type": "zip",
  3856. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  3857. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  3858. "shasum": ""
  3859. },
  3860. "require": {
  3861. "php": ">=5.6"
  3862. },
  3863. "type": "library",
  3864. "extra": {
  3865. "branch-alias": {
  3866. "dev-master": "2.0.x-dev"
  3867. }
  3868. },
  3869. "autoload": {
  3870. "classmap": [
  3871. "src/"
  3872. ]
  3873. },
  3874. "notification-url": "https://packagist.org/downloads/",
  3875. "license": [
  3876. "BSD-3-Clause"
  3877. ],
  3878. "authors": [
  3879. {
  3880. "name": "Sebastian Bergmann",
  3881. "email": "sebastian@phpunit.de",
  3882. "role": "lead"
  3883. }
  3884. ],
  3885. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3886. "homepage": "https://github.com/sebastianbergmann/version",
  3887. "time": "2016-10-03T07:35:21+00:00"
  3888. },
  3889. {
  3890. "name": "symfony/thanks",
  3891. "version": "v1.1.0",
  3892. "source": {
  3893. "type": "git",
  3894. "url": "https://github.com/symfony/thanks.git",
  3895. "reference": "9474a631b52737c623b6aeba22f00bbc003251da"
  3896. },
  3897. "dist": {
  3898. "type": "zip",
  3899. "url": "https://api.github.com/repos/symfony/thanks/zipball/9474a631b52737c623b6aeba22f00bbc003251da",
  3900. "reference": "9474a631b52737c623b6aeba22f00bbc003251da",
  3901. "shasum": ""
  3902. },
  3903. "require": {
  3904. "composer-plugin-api": "^1.0",
  3905. "php": "^5.5.9|^7.0.0"
  3906. },
  3907. "type": "composer-plugin",
  3908. "extra": {
  3909. "branch-alias": {
  3910. "dev-master": "1.0-dev"
  3911. },
  3912. "class": "Symfony\\Thanks\\Thanks"
  3913. },
  3914. "autoload": {
  3915. "psr-4": {
  3916. "Symfony\\Thanks\\": "src"
  3917. }
  3918. },
  3919. "notification-url": "https://packagist.org/downloads/",
  3920. "license": [
  3921. "MIT"
  3922. ],
  3923. "authors": [
  3924. {
  3925. "name": "Nicolas Grekas",
  3926. "email": "p@tchwork.com"
  3927. }
  3928. ],
  3929. "description": "Give thanks (in the form of a GitHub ⭐) to your fellow PHP package maintainers (not limited to Symfony components)!",
  3930. "time": "2018-08-24T14:08:13+00:00"
  3931. },
  3932. {
  3933. "name": "theseer/tokenizer",
  3934. "version": "1.1.0",
  3935. "source": {
  3936. "type": "git",
  3937. "url": "https://github.com/theseer/tokenizer.git",
  3938. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  3939. },
  3940. "dist": {
  3941. "type": "zip",
  3942. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  3943. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  3944. "shasum": ""
  3945. },
  3946. "require": {
  3947. "ext-dom": "*",
  3948. "ext-tokenizer": "*",
  3949. "ext-xmlwriter": "*",
  3950. "php": "^7.0"
  3951. },
  3952. "type": "library",
  3953. "autoload": {
  3954. "classmap": [
  3955. "src/"
  3956. ]
  3957. },
  3958. "notification-url": "https://packagist.org/downloads/",
  3959. "license": [
  3960. "BSD-3-Clause"
  3961. ],
  3962. "authors": [
  3963. {
  3964. "name": "Arne Blankerts",
  3965. "email": "arne@blankerts.de",
  3966. "role": "Developer"
  3967. }
  3968. ],
  3969. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  3970. "time": "2017-04-07T12:08:54+00:00"
  3971. },
  3972. {
  3973. "name": "webmozart/assert",
  3974. "version": "1.3.0",
  3975. "source": {
  3976. "type": "git",
  3977. "url": "https://github.com/webmozart/assert.git",
  3978. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  3979. },
  3980. "dist": {
  3981. "type": "zip",
  3982. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  3983. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  3984. "shasum": ""
  3985. },
  3986. "require": {
  3987. "php": "^5.3.3 || ^7.0"
  3988. },
  3989. "require-dev": {
  3990. "phpunit/phpunit": "^4.6",
  3991. "sebastian/version": "^1.0.1"
  3992. },
  3993. "type": "library",
  3994. "extra": {
  3995. "branch-alias": {
  3996. "dev-master": "1.3-dev"
  3997. }
  3998. },
  3999. "autoload": {
  4000. "psr-4": {
  4001. "Webmozart\\Assert\\": "src/"
  4002. }
  4003. },
  4004. "notification-url": "https://packagist.org/downloads/",
  4005. "license": [
  4006. "MIT"
  4007. ],
  4008. "authors": [
  4009. {
  4010. "name": "Bernhard Schussek",
  4011. "email": "bschussek@gmail.com"
  4012. }
  4013. ],
  4014. "description": "Assertions to validate method input/output with nice error messages.",
  4015. "keywords": [
  4016. "assert",
  4017. "check",
  4018. "validate"
  4019. ],
  4020. "time": "2018-01-29T19:49:41+00:00"
  4021. }
  4022. ],
  4023. "aliases": [],
  4024. "minimum-stability": "stable",
  4025. "stability-flags": [],
  4026. "prefer-stable": false,
  4027. "prefer-lowest": false,
  4028. "platform": {
  4029. "php": ">=7.0.0"
  4030. },
  4031. "platform-dev": []
  4032. }