composer.lock 194 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514
  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": "f321dabc2904718899f108dbf3730328",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  20. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "time": "2019-12-24T22:41:47+00:00"
  60. },
  61. {
  62. "name": "dnoegel/php-xdg-base-dir",
  63. "version": "v0.1.1",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  67. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  72. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "php": ">=5.3.2"
  77. },
  78. "require-dev": {
  79. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  80. },
  81. "type": "library",
  82. "autoload": {
  83. "psr-4": {
  84. "XdgBaseDir\\": "src/"
  85. }
  86. },
  87. "notification-url": "https://packagist.org/downloads/",
  88. "license": [
  89. "MIT"
  90. ],
  91. "description": "implementation of xdg base directory specification for php",
  92. "time": "2019-12-04T15:06:13+00:00"
  93. },
  94. {
  95. "name": "doctrine/inflector",
  96. "version": "1.3.1",
  97. "source": {
  98. "type": "git",
  99. "url": "https://github.com/doctrine/inflector.git",
  100. "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1"
  101. },
  102. "dist": {
  103. "type": "zip",
  104. "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
  105. "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
  106. "shasum": ""
  107. },
  108. "require": {
  109. "php": "^7.1"
  110. },
  111. "require-dev": {
  112. "phpunit/phpunit": "^6.2"
  113. },
  114. "type": "library",
  115. "extra": {
  116. "branch-alias": {
  117. "dev-master": "1.3.x-dev"
  118. }
  119. },
  120. "autoload": {
  121. "psr-4": {
  122. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  123. }
  124. },
  125. "notification-url": "https://packagist.org/downloads/",
  126. "license": [
  127. "MIT"
  128. ],
  129. "authors": [
  130. {
  131. "name": "Guilherme Blanco",
  132. "email": "guilhermeblanco@gmail.com"
  133. },
  134. {
  135. "name": "Roman Borschel",
  136. "email": "roman@code-factory.org"
  137. },
  138. {
  139. "name": "Benjamin Eberlei",
  140. "email": "kontakt@beberlei.de"
  141. },
  142. {
  143. "name": "Jonathan Wage",
  144. "email": "jonwage@gmail.com"
  145. },
  146. {
  147. "name": "Johannes Schmitt",
  148. "email": "schmittjoh@gmail.com"
  149. }
  150. ],
  151. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  152. "homepage": "http://www.doctrine-project.org",
  153. "keywords": [
  154. "inflection",
  155. "pluralize",
  156. "singularize",
  157. "string"
  158. ],
  159. "time": "2019-10-30T19:59:35+00:00"
  160. },
  161. {
  162. "name": "doctrine/lexer",
  163. "version": "1.2.0",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/doctrine/lexer.git",
  167. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  172. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "php": "^7.2"
  177. },
  178. "require-dev": {
  179. "doctrine/coding-standard": "^6.0",
  180. "phpstan/phpstan": "^0.11.8",
  181. "phpunit/phpunit": "^8.2"
  182. },
  183. "type": "library",
  184. "extra": {
  185. "branch-alias": {
  186. "dev-master": "1.2.x-dev"
  187. }
  188. },
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Johannes Schmitt",
  209. "email": "schmittjoh@gmail.com"
  210. }
  211. ],
  212. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  213. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  214. "keywords": [
  215. "annotations",
  216. "docblock",
  217. "lexer",
  218. "parser",
  219. "php"
  220. ],
  221. "time": "2019-10-30T14:39:59+00:00"
  222. },
  223. {
  224. "name": "dragonmantank/cron-expression",
  225. "version": "v2.3.0",
  226. "source": {
  227. "type": "git",
  228. "url": "https://github.com/dragonmantank/cron-expression.git",
  229. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  230. },
  231. "dist": {
  232. "type": "zip",
  233. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  234. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  235. "shasum": ""
  236. },
  237. "require": {
  238. "php": "^7.0"
  239. },
  240. "require-dev": {
  241. "phpunit/phpunit": "^6.4|^7.0"
  242. },
  243. "type": "library",
  244. "extra": {
  245. "branch-alias": {
  246. "dev-master": "2.3-dev"
  247. }
  248. },
  249. "autoload": {
  250. "psr-4": {
  251. "Cron\\": "src/Cron/"
  252. }
  253. },
  254. "notification-url": "https://packagist.org/downloads/",
  255. "license": [
  256. "MIT"
  257. ],
  258. "authors": [
  259. {
  260. "name": "Michael Dowling",
  261. "email": "mtdowling@gmail.com",
  262. "homepage": "https://github.com/mtdowling"
  263. },
  264. {
  265. "name": "Chris Tankersley",
  266. "email": "chris@ctankersley.com",
  267. "homepage": "https://github.com/dragonmantank"
  268. }
  269. ],
  270. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  271. "keywords": [
  272. "cron",
  273. "schedule"
  274. ],
  275. "time": "2019-03-31T00:38:28+00:00"
  276. },
  277. {
  278. "name": "egulias/email-validator",
  279. "version": "2.1.17",
  280. "source": {
  281. "type": "git",
  282. "url": "https://github.com/egulias/EmailValidator.git",
  283. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  284. },
  285. "dist": {
  286. "type": "zip",
  287. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  288. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  289. "shasum": ""
  290. },
  291. "require": {
  292. "doctrine/lexer": "^1.0.1",
  293. "php": ">=5.5",
  294. "symfony/polyfill-intl-idn": "^1.10"
  295. },
  296. "require-dev": {
  297. "dominicsayers/isemail": "^3.0.7",
  298. "phpunit/phpunit": "^4.8.36|^7.5.15",
  299. "satooshi/php-coveralls": "^1.0.1"
  300. },
  301. "suggest": {
  302. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  303. },
  304. "type": "library",
  305. "extra": {
  306. "branch-alias": {
  307. "dev-master": "2.1.x-dev"
  308. }
  309. },
  310. "autoload": {
  311. "psr-4": {
  312. "Egulias\\EmailValidator\\": "EmailValidator"
  313. }
  314. },
  315. "notification-url": "https://packagist.org/downloads/",
  316. "license": [
  317. "MIT"
  318. ],
  319. "authors": [
  320. {
  321. "name": "Eduardo Gulias Davis"
  322. }
  323. ],
  324. "description": "A library for validating emails against several RFCs",
  325. "homepage": "https://github.com/egulias/EmailValidator",
  326. "keywords": [
  327. "email",
  328. "emailvalidation",
  329. "emailvalidator",
  330. "validation",
  331. "validator"
  332. ],
  333. "time": "2020-02-13T22:36:52+00:00"
  334. },
  335. {
  336. "name": "fideloper/proxy",
  337. "version": "4.3.0",
  338. "source": {
  339. "type": "git",
  340. "url": "https://github.com/fideloper/TrustedProxy.git",
  341. "reference": "ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a"
  342. },
  343. "dist": {
  344. "type": "zip",
  345. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a",
  346. "reference": "ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a",
  347. "shasum": ""
  348. },
  349. "require": {
  350. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  351. "php": ">=5.4.0"
  352. },
  353. "require-dev": {
  354. "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
  355. "mockery/mockery": "^1.0",
  356. "phpunit/phpunit": "^6.0"
  357. },
  358. "type": "library",
  359. "extra": {
  360. "laravel": {
  361. "providers": [
  362. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  363. ]
  364. }
  365. },
  366. "autoload": {
  367. "psr-4": {
  368. "Fideloper\\Proxy\\": "src/"
  369. }
  370. },
  371. "notification-url": "https://packagist.org/downloads/",
  372. "license": [
  373. "MIT"
  374. ],
  375. "authors": [
  376. {
  377. "name": "Chris Fidao",
  378. "email": "fideloper@gmail.com"
  379. }
  380. ],
  381. "description": "Set trusted proxies for Laravel",
  382. "keywords": [
  383. "load balancing",
  384. "proxy",
  385. "trusted proxy"
  386. ],
  387. "time": "2020-02-22T01:51:47+00:00"
  388. },
  389. {
  390. "name": "fruitcake/laravel-cors",
  391. "version": "v1.0.4",
  392. "source": {
  393. "type": "git",
  394. "url": "https://github.com/fruitcake/laravel-cors.git",
  395. "reference": "138ad34ba5f578283e94c5614f6c48a10bc3ac6a"
  396. },
  397. "dist": {
  398. "type": "zip",
  399. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/138ad34ba5f578283e94c5614f6c48a10bc3ac6a",
  400. "reference": "138ad34ba5f578283e94c5614f6c48a10bc3ac6a",
  401. "shasum": ""
  402. },
  403. "require": {
  404. "asm89/stack-cors": "^1.3",
  405. "illuminate/contracts": "^5.5|^6.0|^7.0|^8.0",
  406. "illuminate/support": "^5.5|^6.0|^7.0|^8.0",
  407. "php": ">=7",
  408. "symfony/http-foundation": "^3.3|^4.0|^5.0",
  409. "symfony/http-kernel": "^3.3|^4.0|^5.0"
  410. },
  411. "require-dev": {
  412. "laravel/framework": "^5.5|^6.0|^7.0|^8.0",
  413. "orchestra/testbench": "^3.5|^4.0|^5.0|^6.0",
  414. "phpro/grumphp": "^0.16|^0.17",
  415. "phpunit/phpunit": "^6.0|^7.0|^8.0",
  416. "squizlabs/php_codesniffer": "^3.5"
  417. },
  418. "type": "library",
  419. "extra": {
  420. "branch-alias": {
  421. "dev-master": "1.0-dev"
  422. },
  423. "laravel": {
  424. "providers": [
  425. "Fruitcake\\Cors\\CorsServiceProvider"
  426. ]
  427. }
  428. },
  429. "autoload": {
  430. "psr-4": {
  431. "Fruitcake\\Cors\\": "src/"
  432. }
  433. },
  434. "notification-url": "https://packagist.org/downloads/",
  435. "license": [
  436. "MIT"
  437. ],
  438. "authors": [
  439. {
  440. "name": "Fruitcake",
  441. "homepage": "https://fruitcake.nl"
  442. },
  443. {
  444. "name": "Barry vd. Heuvel",
  445. "email": "barryvdh@gmail.com"
  446. }
  447. ],
  448. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  449. "keywords": [
  450. "api",
  451. "cors",
  452. "crossdomain",
  453. "laravel"
  454. ],
  455. "time": "2020-02-21T13:24:15+00:00"
  456. },
  457. {
  458. "name": "guzzlehttp/guzzle",
  459. "version": "6.5.2",
  460. "source": {
  461. "type": "git",
  462. "url": "https://github.com/guzzle/guzzle.git",
  463. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82"
  464. },
  465. "dist": {
  466. "type": "zip",
  467. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82",
  468. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82",
  469. "shasum": ""
  470. },
  471. "require": {
  472. "ext-json": "*",
  473. "guzzlehttp/promises": "^1.0",
  474. "guzzlehttp/psr7": "^1.6.1",
  475. "php": ">=5.5"
  476. },
  477. "require-dev": {
  478. "ext-curl": "*",
  479. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  480. "psr/log": "^1.1"
  481. },
  482. "suggest": {
  483. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  484. "psr/log": "Required for using the Log middleware"
  485. },
  486. "type": "library",
  487. "extra": {
  488. "branch-alias": {
  489. "dev-master": "6.5-dev"
  490. }
  491. },
  492. "autoload": {
  493. "psr-4": {
  494. "GuzzleHttp\\": "src/"
  495. },
  496. "files": [
  497. "src/functions_include.php"
  498. ]
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "Michael Dowling",
  507. "email": "mtdowling@gmail.com",
  508. "homepage": "https://github.com/mtdowling"
  509. }
  510. ],
  511. "description": "Guzzle is a PHP HTTP client library",
  512. "homepage": "http://guzzlephp.org/",
  513. "keywords": [
  514. "client",
  515. "curl",
  516. "framework",
  517. "http",
  518. "http client",
  519. "rest",
  520. "web service"
  521. ],
  522. "time": "2019-12-23T11:57:10+00:00"
  523. },
  524. {
  525. "name": "guzzlehttp/promises",
  526. "version": "v1.3.1",
  527. "source": {
  528. "type": "git",
  529. "url": "https://github.com/guzzle/promises.git",
  530. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  531. },
  532. "dist": {
  533. "type": "zip",
  534. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  535. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  536. "shasum": ""
  537. },
  538. "require": {
  539. "php": ">=5.5.0"
  540. },
  541. "require-dev": {
  542. "phpunit/phpunit": "^4.0"
  543. },
  544. "type": "library",
  545. "extra": {
  546. "branch-alias": {
  547. "dev-master": "1.4-dev"
  548. }
  549. },
  550. "autoload": {
  551. "psr-4": {
  552. "GuzzleHttp\\Promise\\": "src/"
  553. },
  554. "files": [
  555. "src/functions_include.php"
  556. ]
  557. },
  558. "notification-url": "https://packagist.org/downloads/",
  559. "license": [
  560. "MIT"
  561. ],
  562. "authors": [
  563. {
  564. "name": "Michael Dowling",
  565. "email": "mtdowling@gmail.com",
  566. "homepage": "https://github.com/mtdowling"
  567. }
  568. ],
  569. "description": "Guzzle promises library",
  570. "keywords": [
  571. "promise"
  572. ],
  573. "time": "2016-12-20T10:07:11+00:00"
  574. },
  575. {
  576. "name": "guzzlehttp/psr7",
  577. "version": "1.6.1",
  578. "source": {
  579. "type": "git",
  580. "url": "https://github.com/guzzle/psr7.git",
  581. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  582. },
  583. "dist": {
  584. "type": "zip",
  585. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  586. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  587. "shasum": ""
  588. },
  589. "require": {
  590. "php": ">=5.4.0",
  591. "psr/http-message": "~1.0",
  592. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  593. },
  594. "provide": {
  595. "psr/http-message-implementation": "1.0"
  596. },
  597. "require-dev": {
  598. "ext-zlib": "*",
  599. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  600. },
  601. "suggest": {
  602. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  603. },
  604. "type": "library",
  605. "extra": {
  606. "branch-alias": {
  607. "dev-master": "1.6-dev"
  608. }
  609. },
  610. "autoload": {
  611. "psr-4": {
  612. "GuzzleHttp\\Psr7\\": "src/"
  613. },
  614. "files": [
  615. "src/functions_include.php"
  616. ]
  617. },
  618. "notification-url": "https://packagist.org/downloads/",
  619. "license": [
  620. "MIT"
  621. ],
  622. "authors": [
  623. {
  624. "name": "Michael Dowling",
  625. "email": "mtdowling@gmail.com",
  626. "homepage": "https://github.com/mtdowling"
  627. },
  628. {
  629. "name": "Tobias Schultze",
  630. "homepage": "https://github.com/Tobion"
  631. }
  632. ],
  633. "description": "PSR-7 message implementation that also provides common utility methods",
  634. "keywords": [
  635. "http",
  636. "message",
  637. "psr-7",
  638. "request",
  639. "response",
  640. "stream",
  641. "uri",
  642. "url"
  643. ],
  644. "time": "2019-07-01T23:21:34+00:00"
  645. },
  646. {
  647. "name": "jakub-onderka/php-console-color",
  648. "version": "v0.2",
  649. "source": {
  650. "type": "git",
  651. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  652. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  653. },
  654. "dist": {
  655. "type": "zip",
  656. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  657. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  658. "shasum": ""
  659. },
  660. "require": {
  661. "php": ">=5.4.0"
  662. },
  663. "require-dev": {
  664. "jakub-onderka/php-code-style": "1.0",
  665. "jakub-onderka/php-parallel-lint": "1.0",
  666. "jakub-onderka/php-var-dump-check": "0.*",
  667. "phpunit/phpunit": "~4.3",
  668. "squizlabs/php_codesniffer": "1.*"
  669. },
  670. "type": "library",
  671. "autoload": {
  672. "psr-4": {
  673. "JakubOnderka\\PhpConsoleColor\\": "src/"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "BSD-2-Clause"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Jakub Onderka",
  683. "email": "jakub.onderka@gmail.com"
  684. }
  685. ],
  686. "time": "2018-09-29T17:23:10+00:00"
  687. },
  688. {
  689. "name": "jakub-onderka/php-console-highlighter",
  690. "version": "v0.4",
  691. "source": {
  692. "type": "git",
  693. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  694. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  695. },
  696. "dist": {
  697. "type": "zip",
  698. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  699. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  700. "shasum": ""
  701. },
  702. "require": {
  703. "ext-tokenizer": "*",
  704. "jakub-onderka/php-console-color": "~0.2",
  705. "php": ">=5.4.0"
  706. },
  707. "require-dev": {
  708. "jakub-onderka/php-code-style": "~1.0",
  709. "jakub-onderka/php-parallel-lint": "~1.0",
  710. "jakub-onderka/php-var-dump-check": "~0.1",
  711. "phpunit/phpunit": "~4.0",
  712. "squizlabs/php_codesniffer": "~1.5"
  713. },
  714. "type": "library",
  715. "autoload": {
  716. "psr-4": {
  717. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  718. }
  719. },
  720. "notification-url": "https://packagist.org/downloads/",
  721. "license": [
  722. "MIT"
  723. ],
  724. "authors": [
  725. {
  726. "name": "Jakub Onderka",
  727. "email": "acci@acci.cz",
  728. "homepage": "http://www.acci.cz/"
  729. }
  730. ],
  731. "description": "Highlight PHP code in terminal",
  732. "time": "2018-09-29T18:48:56+00:00"
  733. },
  734. {
  735. "name": "laravel/framework",
  736. "version": "v7.1.0",
  737. "source": {
  738. "type": "git",
  739. "url": "https://github.com/laravel/framework.git",
  740. "reference": "59b97d2868ff42d11626e63c6773b41146b3eb9c"
  741. },
  742. "dist": {
  743. "type": "zip",
  744. "url": "https://api.github.com/repos/laravel/framework/zipball/59b97d2868ff42d11626e63c6773b41146b3eb9c",
  745. "reference": "59b97d2868ff42d11626e63c6773b41146b3eb9c",
  746. "shasum": ""
  747. },
  748. "require": {
  749. "doctrine/inflector": "^1.1",
  750. "dragonmantank/cron-expression": "^2.0",
  751. "egulias/email-validator": "^2.1.10",
  752. "ext-json": "*",
  753. "ext-mbstring": "*",
  754. "ext-openssl": "*",
  755. "league/commonmark": "^1.3",
  756. "league/flysystem": "^1.0.8",
  757. "monolog/monolog": "^2.0",
  758. "nesbot/carbon": "^2.17",
  759. "opis/closure": "^3.1",
  760. "php": "^7.2.5",
  761. "psr/container": "^1.0",
  762. "psr/simple-cache": "^1.0",
  763. "ramsey/uuid": "^3.7",
  764. "swiftmailer/swiftmailer": "^6.0",
  765. "symfony/console": "^5.0",
  766. "symfony/error-handler": "^5.0",
  767. "symfony/finder": "^5.0",
  768. "symfony/http-foundation": "^5.0",
  769. "symfony/http-kernel": "^5.0",
  770. "symfony/mime": "^5.0",
  771. "symfony/process": "^5.0",
  772. "symfony/routing": "^5.0",
  773. "symfony/var-dumper": "^5.0",
  774. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  775. "vlucas/phpdotenv": "^4.0",
  776. "voku/portable-ascii": "^1.4.8"
  777. },
  778. "conflict": {
  779. "tightenco/collect": "<5.5.33"
  780. },
  781. "replace": {
  782. "illuminate/auth": "self.version",
  783. "illuminate/broadcasting": "self.version",
  784. "illuminate/bus": "self.version",
  785. "illuminate/cache": "self.version",
  786. "illuminate/config": "self.version",
  787. "illuminate/console": "self.version",
  788. "illuminate/container": "self.version",
  789. "illuminate/contracts": "self.version",
  790. "illuminate/cookie": "self.version",
  791. "illuminate/database": "self.version",
  792. "illuminate/encryption": "self.version",
  793. "illuminate/events": "self.version",
  794. "illuminate/filesystem": "self.version",
  795. "illuminate/hashing": "self.version",
  796. "illuminate/http": "self.version",
  797. "illuminate/log": "self.version",
  798. "illuminate/mail": "self.version",
  799. "illuminate/notifications": "self.version",
  800. "illuminate/pagination": "self.version",
  801. "illuminate/pipeline": "self.version",
  802. "illuminate/queue": "self.version",
  803. "illuminate/redis": "self.version",
  804. "illuminate/routing": "self.version",
  805. "illuminate/session": "self.version",
  806. "illuminate/support": "self.version",
  807. "illuminate/testing": "self.version",
  808. "illuminate/translation": "self.version",
  809. "illuminate/validation": "self.version",
  810. "illuminate/view": "self.version"
  811. },
  812. "require-dev": {
  813. "aws/aws-sdk-php": "^3.0",
  814. "doctrine/dbal": "^2.6",
  815. "filp/whoops": "^2.4",
  816. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  817. "league/flysystem-cached-adapter": "^1.0",
  818. "mockery/mockery": "^1.3.1",
  819. "moontoast/math": "^1.1",
  820. "orchestra/testbench-core": "^5.0",
  821. "pda/pheanstalk": "^4.0",
  822. "phpunit/phpunit": "^8.4|^9.0",
  823. "predis/predis": "^1.1.1",
  824. "symfony/cache": "^5.0"
  825. },
  826. "suggest": {
  827. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  828. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  829. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  830. "ext-memcached": "Required to use the memcache cache driver.",
  831. "ext-pcntl": "Required to use all features of the queue worker.",
  832. "ext-posix": "Required to use all features of the queue worker.",
  833. "ext-redis": "Required to use the Redis cache and queue drivers.",
  834. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  835. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  836. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
  837. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  838. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  839. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  840. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  841. "mockery/mockery": "Required to use mocking (^1.3.1).",
  842. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  843. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  844. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  845. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
  846. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  847. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  848. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  849. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  850. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  851. },
  852. "type": "library",
  853. "extra": {
  854. "branch-alias": {
  855. "dev-master": "7.x-dev"
  856. }
  857. },
  858. "autoload": {
  859. "files": [
  860. "src/Illuminate/Foundation/helpers.php",
  861. "src/Illuminate/Support/helpers.php"
  862. ],
  863. "psr-4": {
  864. "Illuminate\\": "src/Illuminate/"
  865. }
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "authors": [
  872. {
  873. "name": "Taylor Otwell",
  874. "email": "taylor@laravel.com"
  875. }
  876. ],
  877. "description": "The Laravel Framework.",
  878. "homepage": "https://laravel.com",
  879. "keywords": [
  880. "framework",
  881. "laravel"
  882. ],
  883. "time": "2020-03-10T14:07:01+00:00"
  884. },
  885. {
  886. "name": "laravel/tinker",
  887. "version": "v2.2.0",
  888. "source": {
  889. "type": "git",
  890. "url": "https://github.com/laravel/tinker.git",
  891. "reference": "37579c93271ec30ef099dd633ec7c2de5e5fb112"
  892. },
  893. "dist": {
  894. "type": "zip",
  895. "url": "https://api.github.com/repos/laravel/tinker/zipball/37579c93271ec30ef099dd633ec7c2de5e5fb112",
  896. "reference": "37579c93271ec30ef099dd633ec7c2de5e5fb112",
  897. "shasum": ""
  898. },
  899. "require": {
  900. "illuminate/console": "^6.0|^7.0",
  901. "illuminate/contracts": "^6.0|^7.0",
  902. "illuminate/support": "^6.0|^7.0",
  903. "php": "^7.2",
  904. "psy/psysh": "^0.9",
  905. "symfony/var-dumper": "^4.0|^5.0"
  906. },
  907. "require-dev": {
  908. "mockery/mockery": "^1.3.1",
  909. "phpunit/phpunit": "^8.0|^9.0"
  910. },
  911. "suggest": {
  912. "illuminate/database": "The Illuminate Database package (^6.0|^7.0)."
  913. },
  914. "type": "library",
  915. "extra": {
  916. "branch-alias": {
  917. "dev-master": "2.x-dev"
  918. },
  919. "laravel": {
  920. "providers": [
  921. "Laravel\\Tinker\\TinkerServiceProvider"
  922. ]
  923. }
  924. },
  925. "autoload": {
  926. "psr-4": {
  927. "Laravel\\Tinker\\": "src/"
  928. }
  929. },
  930. "notification-url": "https://packagist.org/downloads/",
  931. "license": [
  932. "MIT"
  933. ],
  934. "authors": [
  935. {
  936. "name": "Taylor Otwell",
  937. "email": "taylor@laravel.com"
  938. }
  939. ],
  940. "description": "Powerful REPL for the Laravel framework.",
  941. "keywords": [
  942. "REPL",
  943. "Tinker",
  944. "laravel",
  945. "psysh"
  946. ],
  947. "time": "2020-02-05T15:00:44+00:00"
  948. },
  949. {
  950. "name": "league/commonmark",
  951. "version": "1.3.1",
  952. "source": {
  953. "type": "git",
  954. "url": "https://github.com/thephpleague/commonmark.git",
  955. "reference": "8015f806173c6ee54de25a87c2d69736696e88db"
  956. },
  957. "dist": {
  958. "type": "zip",
  959. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/8015f806173c6ee54de25a87c2d69736696e88db",
  960. "reference": "8015f806173c6ee54de25a87c2d69736696e88db",
  961. "shasum": ""
  962. },
  963. "require": {
  964. "ext-mbstring": "*",
  965. "php": "^7.1"
  966. },
  967. "conflict": {
  968. "scrutinizer/ocular": "1.7.*"
  969. },
  970. "require-dev": {
  971. "cebe/markdown": "~1.0",
  972. "commonmark/commonmark.js": "0.29.1",
  973. "erusev/parsedown": "~1.0",
  974. "ext-json": "*",
  975. "github/gfm": "0.29.0",
  976. "michelf/php-markdown": "~1.4",
  977. "mikehaertl/php-shellcommand": "^1.4",
  978. "phpstan/phpstan-shim": "^0.11.5",
  979. "phpunit/phpunit": "^7.5",
  980. "scrutinizer/ocular": "^1.5",
  981. "symfony/finder": "^4.2"
  982. },
  983. "bin": [
  984. "bin/commonmark"
  985. ],
  986. "type": "library",
  987. "extra": {
  988. "branch-alias": {
  989. "dev-master": "1.4-dev"
  990. }
  991. },
  992. "autoload": {
  993. "psr-4": {
  994. "League\\CommonMark\\": "src"
  995. }
  996. },
  997. "notification-url": "https://packagist.org/downloads/",
  998. "license": [
  999. "BSD-3-Clause"
  1000. ],
  1001. "authors": [
  1002. {
  1003. "name": "Colin O'Dell",
  1004. "email": "colinodell@gmail.com",
  1005. "homepage": "https://www.colinodell.com",
  1006. "role": "Lead Developer"
  1007. }
  1008. ],
  1009. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1010. "homepage": "https://commonmark.thephpleague.com",
  1011. "keywords": [
  1012. "commonmark",
  1013. "flavored",
  1014. "gfm",
  1015. "github",
  1016. "github-flavored",
  1017. "markdown",
  1018. "md",
  1019. "parser"
  1020. ],
  1021. "time": "2020-02-28T18:53:50+00:00"
  1022. },
  1023. {
  1024. "name": "league/flysystem",
  1025. "version": "1.0.65",
  1026. "source": {
  1027. "type": "git",
  1028. "url": "https://github.com/thephpleague/flysystem.git",
  1029. "reference": "8f17b3ba67097aafb8318cd5c553b1acf7c891c8"
  1030. },
  1031. "dist": {
  1032. "type": "zip",
  1033. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8f17b3ba67097aafb8318cd5c553b1acf7c891c8",
  1034. "reference": "8f17b3ba67097aafb8318cd5c553b1acf7c891c8",
  1035. "shasum": ""
  1036. },
  1037. "require": {
  1038. "ext-fileinfo": "*",
  1039. "php": ">=5.5.9"
  1040. },
  1041. "conflict": {
  1042. "league/flysystem-sftp": "<1.0.6"
  1043. },
  1044. "require-dev": {
  1045. "phpspec/phpspec": "^3.4",
  1046. "phpunit/phpunit": "^5.7.26"
  1047. },
  1048. "suggest": {
  1049. "ext-fileinfo": "Required for MimeType",
  1050. "ext-ftp": "Allows you to use FTP server storage",
  1051. "ext-openssl": "Allows you to use FTPS server storage",
  1052. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1053. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1054. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1055. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1056. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1057. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1058. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1059. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1060. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1061. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1062. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1063. },
  1064. "type": "library",
  1065. "extra": {
  1066. "branch-alias": {
  1067. "dev-master": "1.1-dev"
  1068. }
  1069. },
  1070. "autoload": {
  1071. "psr-4": {
  1072. "League\\Flysystem\\": "src/"
  1073. }
  1074. },
  1075. "notification-url": "https://packagist.org/downloads/",
  1076. "license": [
  1077. "MIT"
  1078. ],
  1079. "authors": [
  1080. {
  1081. "name": "Frank de Jonge",
  1082. "email": "info@frenky.net"
  1083. }
  1084. ],
  1085. "description": "Filesystem abstraction: Many filesystems, one API.",
  1086. "keywords": [
  1087. "Cloud Files",
  1088. "WebDAV",
  1089. "abstraction",
  1090. "aws",
  1091. "cloud",
  1092. "copy.com",
  1093. "dropbox",
  1094. "file systems",
  1095. "files",
  1096. "filesystem",
  1097. "filesystems",
  1098. "ftp",
  1099. "rackspace",
  1100. "remote",
  1101. "s3",
  1102. "sftp",
  1103. "storage"
  1104. ],
  1105. "time": "2020-03-08T18:53:20+00:00"
  1106. },
  1107. {
  1108. "name": "monolog/monolog",
  1109. "version": "2.0.2",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/Seldaek/monolog.git",
  1113. "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c861fcba2ca29404dc9e617eedd9eff4616986b8",
  1118. "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8",
  1119. "shasum": ""
  1120. },
  1121. "require": {
  1122. "php": "^7.2",
  1123. "psr/log": "^1.0.1"
  1124. },
  1125. "provide": {
  1126. "psr/log-implementation": "1.0.0"
  1127. },
  1128. "require-dev": {
  1129. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1130. "doctrine/couchdb": "~1.0@dev",
  1131. "elasticsearch/elasticsearch": "^6.0",
  1132. "graylog2/gelf-php": "^1.4.2",
  1133. "jakub-onderka/php-parallel-lint": "^0.9",
  1134. "php-amqplib/php-amqplib": "~2.4",
  1135. "php-console/php-console": "^3.1.3",
  1136. "phpspec/prophecy": "^1.6.1",
  1137. "phpunit/phpunit": "^8.3",
  1138. "predis/predis": "^1.1",
  1139. "rollbar/rollbar": "^1.3",
  1140. "ruflin/elastica": ">=0.90 <3.0",
  1141. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1142. },
  1143. "suggest": {
  1144. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1145. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1146. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1147. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1148. "ext-mbstring": "Allow to work properly with unicode symbols",
  1149. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1150. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1151. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1152. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1153. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1154. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1155. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1156. },
  1157. "type": "library",
  1158. "extra": {
  1159. "branch-alias": {
  1160. "dev-master": "2.x-dev"
  1161. }
  1162. },
  1163. "autoload": {
  1164. "psr-4": {
  1165. "Monolog\\": "src/Monolog"
  1166. }
  1167. },
  1168. "notification-url": "https://packagist.org/downloads/",
  1169. "license": [
  1170. "MIT"
  1171. ],
  1172. "authors": [
  1173. {
  1174. "name": "Jordi Boggiano",
  1175. "email": "j.boggiano@seld.be",
  1176. "homepage": "http://seld.be"
  1177. }
  1178. ],
  1179. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1180. "homepage": "http://github.com/Seldaek/monolog",
  1181. "keywords": [
  1182. "log",
  1183. "logging",
  1184. "psr-3"
  1185. ],
  1186. "time": "2019-12-20T14:22:59+00:00"
  1187. },
  1188. {
  1189. "name": "nesbot/carbon",
  1190. "version": "2.31.0",
  1191. "source": {
  1192. "type": "git",
  1193. "url": "https://github.com/briannesbitt/Carbon.git",
  1194. "reference": "bbc0ab53f41a4c6f223c18efcdbd9bc725eb5d2d"
  1195. },
  1196. "dist": {
  1197. "type": "zip",
  1198. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bbc0ab53f41a4c6f223c18efcdbd9bc725eb5d2d",
  1199. "reference": "bbc0ab53f41a4c6f223c18efcdbd9bc725eb5d2d",
  1200. "shasum": ""
  1201. },
  1202. "require": {
  1203. "ext-json": "*",
  1204. "php": "^7.1.8 || ^8.0",
  1205. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  1206. },
  1207. "require-dev": {
  1208. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1209. "kylekatarnls/multi-tester": "^1.1",
  1210. "phpmd/phpmd": "^2.8",
  1211. "phpstan/phpstan": "^0.11",
  1212. "phpunit/phpunit": "^7.5 || ^8.0",
  1213. "squizlabs/php_codesniffer": "^3.4"
  1214. },
  1215. "bin": [
  1216. "bin/carbon"
  1217. ],
  1218. "type": "library",
  1219. "extra": {
  1220. "branch-alias": {
  1221. "dev-master": "2.x-dev"
  1222. },
  1223. "laravel": {
  1224. "providers": [
  1225. "Carbon\\Laravel\\ServiceProvider"
  1226. ]
  1227. }
  1228. },
  1229. "autoload": {
  1230. "psr-4": {
  1231. "Carbon\\": "src/Carbon/"
  1232. }
  1233. },
  1234. "notification-url": "https://packagist.org/downloads/",
  1235. "license": [
  1236. "MIT"
  1237. ],
  1238. "authors": [
  1239. {
  1240. "name": "Brian Nesbitt",
  1241. "email": "brian@nesbot.com",
  1242. "homepage": "http://nesbot.com"
  1243. },
  1244. {
  1245. "name": "kylekatarnls",
  1246. "homepage": "http://github.com/kylekatarnls"
  1247. }
  1248. ],
  1249. "description": "An API extension for DateTime that supports 281 different languages.",
  1250. "homepage": "http://carbon.nesbot.com",
  1251. "keywords": [
  1252. "date",
  1253. "datetime",
  1254. "time"
  1255. ],
  1256. "time": "2020-03-01T11:11:58+00:00"
  1257. },
  1258. {
  1259. "name": "nikic/php-parser",
  1260. "version": "v4.3.0",
  1261. "source": {
  1262. "type": "git",
  1263. "url": "https://github.com/nikic/PHP-Parser.git",
  1264. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc"
  1265. },
  1266. "dist": {
  1267. "type": "zip",
  1268. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  1269. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  1270. "shasum": ""
  1271. },
  1272. "require": {
  1273. "ext-tokenizer": "*",
  1274. "php": ">=7.0"
  1275. },
  1276. "require-dev": {
  1277. "ircmaxell/php-yacc": "0.0.5",
  1278. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  1279. },
  1280. "bin": [
  1281. "bin/php-parse"
  1282. ],
  1283. "type": "library",
  1284. "extra": {
  1285. "branch-alias": {
  1286. "dev-master": "4.3-dev"
  1287. }
  1288. },
  1289. "autoload": {
  1290. "psr-4": {
  1291. "PhpParser\\": "lib/PhpParser"
  1292. }
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "BSD-3-Clause"
  1297. ],
  1298. "authors": [
  1299. {
  1300. "name": "Nikita Popov"
  1301. }
  1302. ],
  1303. "description": "A PHP parser written in PHP",
  1304. "keywords": [
  1305. "parser",
  1306. "php"
  1307. ],
  1308. "time": "2019-11-08T13:50:10+00:00"
  1309. },
  1310. {
  1311. "name": "opis/closure",
  1312. "version": "3.5.1",
  1313. "source": {
  1314. "type": "git",
  1315. "url": "https://github.com/opis/closure.git",
  1316. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969"
  1317. },
  1318. "dist": {
  1319. "type": "zip",
  1320. "url": "https://api.github.com/repos/opis/closure/zipball/93ebc5712cdad8d5f489b500c59d122df2e53969",
  1321. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969",
  1322. "shasum": ""
  1323. },
  1324. "require": {
  1325. "php": "^5.4 || ^7.0"
  1326. },
  1327. "require-dev": {
  1328. "jeremeamia/superclosure": "^2.0",
  1329. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1330. },
  1331. "type": "library",
  1332. "extra": {
  1333. "branch-alias": {
  1334. "dev-master": "3.5.x-dev"
  1335. }
  1336. },
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Opis\\Closure\\": "src/"
  1340. },
  1341. "files": [
  1342. "functions.php"
  1343. ]
  1344. },
  1345. "notification-url": "https://packagist.org/downloads/",
  1346. "license": [
  1347. "MIT"
  1348. ],
  1349. "authors": [
  1350. {
  1351. "name": "Marius Sarca",
  1352. "email": "marius.sarca@gmail.com"
  1353. },
  1354. {
  1355. "name": "Sorin Sarca",
  1356. "email": "sarca_sorin@hotmail.com"
  1357. }
  1358. ],
  1359. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1360. "homepage": "https://opis.io/closure",
  1361. "keywords": [
  1362. "anonymous functions",
  1363. "closure",
  1364. "function",
  1365. "serializable",
  1366. "serialization",
  1367. "serialize"
  1368. ],
  1369. "time": "2019-11-29T22:36:02+00:00"
  1370. },
  1371. {
  1372. "name": "paragonie/random_compat",
  1373. "version": "v9.99.99",
  1374. "source": {
  1375. "type": "git",
  1376. "url": "https://github.com/paragonie/random_compat.git",
  1377. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1378. },
  1379. "dist": {
  1380. "type": "zip",
  1381. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1382. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1383. "shasum": ""
  1384. },
  1385. "require": {
  1386. "php": "^7"
  1387. },
  1388. "require-dev": {
  1389. "phpunit/phpunit": "4.*|5.*",
  1390. "vimeo/psalm": "^1"
  1391. },
  1392. "suggest": {
  1393. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1394. },
  1395. "type": "library",
  1396. "notification-url": "https://packagist.org/downloads/",
  1397. "license": [
  1398. "MIT"
  1399. ],
  1400. "authors": [
  1401. {
  1402. "name": "Paragon Initiative Enterprises",
  1403. "email": "security@paragonie.com",
  1404. "homepage": "https://paragonie.com"
  1405. }
  1406. ],
  1407. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1408. "keywords": [
  1409. "csprng",
  1410. "polyfill",
  1411. "pseudorandom",
  1412. "random"
  1413. ],
  1414. "time": "2018-07-02T15:55:56+00:00"
  1415. },
  1416. {
  1417. "name": "phpoption/phpoption",
  1418. "version": "1.7.2",
  1419. "source": {
  1420. "type": "git",
  1421. "url": "https://github.com/schmittjoh/php-option.git",
  1422. "reference": "77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959"
  1423. },
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959",
  1427. "reference": "77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959",
  1428. "shasum": ""
  1429. },
  1430. "require": {
  1431. "php": "^5.5.9 || ^7.0"
  1432. },
  1433. "require-dev": {
  1434. "bamarni/composer-bin-plugin": "^1.3",
  1435. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  1436. },
  1437. "type": "library",
  1438. "extra": {
  1439. "branch-alias": {
  1440. "dev-master": "1.7-dev"
  1441. }
  1442. },
  1443. "autoload": {
  1444. "psr-4": {
  1445. "PhpOption\\": "src/PhpOption/"
  1446. }
  1447. },
  1448. "notification-url": "https://packagist.org/downloads/",
  1449. "license": [
  1450. "Apache-2.0"
  1451. ],
  1452. "authors": [
  1453. {
  1454. "name": "Johannes M. Schmitt",
  1455. "email": "schmittjoh@gmail.com"
  1456. },
  1457. {
  1458. "name": "Graham Campbell",
  1459. "email": "graham@alt-three.com"
  1460. }
  1461. ],
  1462. "description": "Option Type for PHP",
  1463. "keywords": [
  1464. "language",
  1465. "option",
  1466. "php",
  1467. "type"
  1468. ],
  1469. "time": "2019-12-15T19:35:24+00:00"
  1470. },
  1471. {
  1472. "name": "psr/container",
  1473. "version": "1.0.0",
  1474. "source": {
  1475. "type": "git",
  1476. "url": "https://github.com/php-fig/container.git",
  1477. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1478. },
  1479. "dist": {
  1480. "type": "zip",
  1481. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1482. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1483. "shasum": ""
  1484. },
  1485. "require": {
  1486. "php": ">=5.3.0"
  1487. },
  1488. "type": "library",
  1489. "extra": {
  1490. "branch-alias": {
  1491. "dev-master": "1.0.x-dev"
  1492. }
  1493. },
  1494. "autoload": {
  1495. "psr-4": {
  1496. "Psr\\Container\\": "src/"
  1497. }
  1498. },
  1499. "notification-url": "https://packagist.org/downloads/",
  1500. "license": [
  1501. "MIT"
  1502. ],
  1503. "authors": [
  1504. {
  1505. "name": "PHP-FIG",
  1506. "homepage": "http://www.php-fig.org/"
  1507. }
  1508. ],
  1509. "description": "Common Container Interface (PHP FIG PSR-11)",
  1510. "homepage": "https://github.com/php-fig/container",
  1511. "keywords": [
  1512. "PSR-11",
  1513. "container",
  1514. "container-interface",
  1515. "container-interop",
  1516. "psr"
  1517. ],
  1518. "time": "2017-02-14T16:28:37+00:00"
  1519. },
  1520. {
  1521. "name": "psr/event-dispatcher",
  1522. "version": "1.0.0",
  1523. "source": {
  1524. "type": "git",
  1525. "url": "https://github.com/php-fig/event-dispatcher.git",
  1526. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1527. },
  1528. "dist": {
  1529. "type": "zip",
  1530. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1531. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1532. "shasum": ""
  1533. },
  1534. "require": {
  1535. "php": ">=7.2.0"
  1536. },
  1537. "type": "library",
  1538. "extra": {
  1539. "branch-alias": {
  1540. "dev-master": "1.0.x-dev"
  1541. }
  1542. },
  1543. "autoload": {
  1544. "psr-4": {
  1545. "Psr\\EventDispatcher\\": "src/"
  1546. }
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "MIT"
  1551. ],
  1552. "authors": [
  1553. {
  1554. "name": "PHP-FIG",
  1555. "homepage": "http://www.php-fig.org/"
  1556. }
  1557. ],
  1558. "description": "Standard interfaces for event handling.",
  1559. "keywords": [
  1560. "events",
  1561. "psr",
  1562. "psr-14"
  1563. ],
  1564. "time": "2019-01-08T18:20:26+00:00"
  1565. },
  1566. {
  1567. "name": "psr/http-message",
  1568. "version": "1.0.1",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/php-fig/http-message.git",
  1572. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1577. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "php": ">=5.3.0"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-master": "1.0.x-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Psr\\Http\\Message\\": "src/"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "PHP-FIG",
  1601. "homepage": "http://www.php-fig.org/"
  1602. }
  1603. ],
  1604. "description": "Common interface for HTTP messages",
  1605. "homepage": "https://github.com/php-fig/http-message",
  1606. "keywords": [
  1607. "http",
  1608. "http-message",
  1609. "psr",
  1610. "psr-7",
  1611. "request",
  1612. "response"
  1613. ],
  1614. "time": "2016-08-06T14:39:51+00:00"
  1615. },
  1616. {
  1617. "name": "psr/log",
  1618. "version": "1.1.2",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/php-fig/log.git",
  1622. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1627. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1628. "shasum": ""
  1629. },
  1630. "require": {
  1631. "php": ">=5.3.0"
  1632. },
  1633. "type": "library",
  1634. "extra": {
  1635. "branch-alias": {
  1636. "dev-master": "1.1.x-dev"
  1637. }
  1638. },
  1639. "autoload": {
  1640. "psr-4": {
  1641. "Psr\\Log\\": "Psr/Log/"
  1642. }
  1643. },
  1644. "notification-url": "https://packagist.org/downloads/",
  1645. "license": [
  1646. "MIT"
  1647. ],
  1648. "authors": [
  1649. {
  1650. "name": "PHP-FIG",
  1651. "homepage": "http://www.php-fig.org/"
  1652. }
  1653. ],
  1654. "description": "Common interface for logging libraries",
  1655. "homepage": "https://github.com/php-fig/log",
  1656. "keywords": [
  1657. "log",
  1658. "psr",
  1659. "psr-3"
  1660. ],
  1661. "time": "2019-11-01T11:05:21+00:00"
  1662. },
  1663. {
  1664. "name": "psr/simple-cache",
  1665. "version": "1.0.1",
  1666. "source": {
  1667. "type": "git",
  1668. "url": "https://github.com/php-fig/simple-cache.git",
  1669. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1670. },
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1674. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1675. "shasum": ""
  1676. },
  1677. "require": {
  1678. "php": ">=5.3.0"
  1679. },
  1680. "type": "library",
  1681. "extra": {
  1682. "branch-alias": {
  1683. "dev-master": "1.0.x-dev"
  1684. }
  1685. },
  1686. "autoload": {
  1687. "psr-4": {
  1688. "Psr\\SimpleCache\\": "src/"
  1689. }
  1690. },
  1691. "notification-url": "https://packagist.org/downloads/",
  1692. "license": [
  1693. "MIT"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "PHP-FIG",
  1698. "homepage": "http://www.php-fig.org/"
  1699. }
  1700. ],
  1701. "description": "Common interfaces for simple caching",
  1702. "keywords": [
  1703. "cache",
  1704. "caching",
  1705. "psr",
  1706. "psr-16",
  1707. "simple-cache"
  1708. ],
  1709. "time": "2017-10-23T01:57:42+00:00"
  1710. },
  1711. {
  1712. "name": "psy/psysh",
  1713. "version": "v0.9.12",
  1714. "source": {
  1715. "type": "git",
  1716. "url": "https://github.com/bobthecow/psysh.git",
  1717. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  1718. },
  1719. "dist": {
  1720. "type": "zip",
  1721. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  1722. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  1723. "shasum": ""
  1724. },
  1725. "require": {
  1726. "dnoegel/php-xdg-base-dir": "0.1.*",
  1727. "ext-json": "*",
  1728. "ext-tokenizer": "*",
  1729. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  1730. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  1731. "php": ">=5.4.0",
  1732. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  1733. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  1734. },
  1735. "require-dev": {
  1736. "bamarni/composer-bin-plugin": "^1.2",
  1737. "hoa/console": "~2.15|~3.16",
  1738. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  1739. },
  1740. "suggest": {
  1741. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1742. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1743. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1744. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  1745. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  1746. },
  1747. "bin": [
  1748. "bin/psysh"
  1749. ],
  1750. "type": "library",
  1751. "extra": {
  1752. "branch-alias": {
  1753. "dev-develop": "0.9.x-dev"
  1754. }
  1755. },
  1756. "autoload": {
  1757. "files": [
  1758. "src/functions.php"
  1759. ],
  1760. "psr-4": {
  1761. "Psy\\": "src/"
  1762. }
  1763. },
  1764. "notification-url": "https://packagist.org/downloads/",
  1765. "license": [
  1766. "MIT"
  1767. ],
  1768. "authors": [
  1769. {
  1770. "name": "Justin Hileman",
  1771. "email": "justin@justinhileman.info",
  1772. "homepage": "http://justinhileman.com"
  1773. }
  1774. ],
  1775. "description": "An interactive shell for modern PHP.",
  1776. "homepage": "http://psysh.org",
  1777. "keywords": [
  1778. "REPL",
  1779. "console",
  1780. "interactive",
  1781. "shell"
  1782. ],
  1783. "time": "2019-12-06T14:19:43+00:00"
  1784. },
  1785. {
  1786. "name": "ralouphie/getallheaders",
  1787. "version": "3.0.3",
  1788. "source": {
  1789. "type": "git",
  1790. "url": "https://github.com/ralouphie/getallheaders.git",
  1791. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1792. },
  1793. "dist": {
  1794. "type": "zip",
  1795. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1796. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1797. "shasum": ""
  1798. },
  1799. "require": {
  1800. "php": ">=5.6"
  1801. },
  1802. "require-dev": {
  1803. "php-coveralls/php-coveralls": "^2.1",
  1804. "phpunit/phpunit": "^5 || ^6.5"
  1805. },
  1806. "type": "library",
  1807. "autoload": {
  1808. "files": [
  1809. "src/getallheaders.php"
  1810. ]
  1811. },
  1812. "notification-url": "https://packagist.org/downloads/",
  1813. "license": [
  1814. "MIT"
  1815. ],
  1816. "authors": [
  1817. {
  1818. "name": "Ralph Khattar",
  1819. "email": "ralph.khattar@gmail.com"
  1820. }
  1821. ],
  1822. "description": "A polyfill for getallheaders.",
  1823. "time": "2019-03-08T08:55:37+00:00"
  1824. },
  1825. {
  1826. "name": "ramsey/uuid",
  1827. "version": "3.9.3",
  1828. "source": {
  1829. "type": "git",
  1830. "url": "https://github.com/ramsey/uuid.git",
  1831. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
  1832. },
  1833. "dist": {
  1834. "type": "zip",
  1835. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
  1836. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
  1837. "shasum": ""
  1838. },
  1839. "require": {
  1840. "ext-json": "*",
  1841. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  1842. "php": "^5.4 | ^7 | ^8",
  1843. "symfony/polyfill-ctype": "^1.8"
  1844. },
  1845. "replace": {
  1846. "rhumsaa/uuid": "self.version"
  1847. },
  1848. "require-dev": {
  1849. "codeception/aspect-mock": "^1 | ^2",
  1850. "doctrine/annotations": "^1.2",
  1851. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  1852. "jakub-onderka/php-parallel-lint": "^1",
  1853. "mockery/mockery": "^0.9.11 | ^1",
  1854. "moontoast/math": "^1.1",
  1855. "paragonie/random-lib": "^2",
  1856. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  1857. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  1858. "squizlabs/php_codesniffer": "^3.5"
  1859. },
  1860. "suggest": {
  1861. "ext-ctype": "Provides support for PHP Ctype functions",
  1862. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  1863. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  1864. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  1865. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  1866. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  1867. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  1868. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  1869. },
  1870. "type": "library",
  1871. "extra": {
  1872. "branch-alias": {
  1873. "dev-master": "3.x-dev"
  1874. }
  1875. },
  1876. "autoload": {
  1877. "psr-4": {
  1878. "Ramsey\\Uuid\\": "src/"
  1879. },
  1880. "files": [
  1881. "src/functions.php"
  1882. ]
  1883. },
  1884. "notification-url": "https://packagist.org/downloads/",
  1885. "license": [
  1886. "MIT"
  1887. ],
  1888. "authors": [
  1889. {
  1890. "name": "Ben Ramsey",
  1891. "email": "ben@benramsey.com",
  1892. "homepage": "https://benramsey.com"
  1893. },
  1894. {
  1895. "name": "Marijn Huizendveld",
  1896. "email": "marijn.huizendveld@gmail.com"
  1897. },
  1898. {
  1899. "name": "Thibaud Fabre",
  1900. "email": "thibaud@aztech.io"
  1901. }
  1902. ],
  1903. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  1904. "homepage": "https://github.com/ramsey/uuid",
  1905. "keywords": [
  1906. "guid",
  1907. "identifier",
  1908. "uuid"
  1909. ],
  1910. "time": "2020-02-21T04:36:14+00:00"
  1911. },
  1912. {
  1913. "name": "swiftmailer/swiftmailer",
  1914. "version": "v6.2.3",
  1915. "source": {
  1916. "type": "git",
  1917. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1918. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  1919. },
  1920. "dist": {
  1921. "type": "zip",
  1922. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  1923. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  1924. "shasum": ""
  1925. },
  1926. "require": {
  1927. "egulias/email-validator": "~2.0",
  1928. "php": ">=7.0.0",
  1929. "symfony/polyfill-iconv": "^1.0",
  1930. "symfony/polyfill-intl-idn": "^1.10",
  1931. "symfony/polyfill-mbstring": "^1.0"
  1932. },
  1933. "require-dev": {
  1934. "mockery/mockery": "~0.9.1",
  1935. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  1936. },
  1937. "suggest": {
  1938. "ext-intl": "Needed to support internationalized email addresses",
  1939. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  1940. },
  1941. "type": "library",
  1942. "extra": {
  1943. "branch-alias": {
  1944. "dev-master": "6.2-dev"
  1945. }
  1946. },
  1947. "autoload": {
  1948. "files": [
  1949. "lib/swift_required.php"
  1950. ]
  1951. },
  1952. "notification-url": "https://packagist.org/downloads/",
  1953. "license": [
  1954. "MIT"
  1955. ],
  1956. "authors": [
  1957. {
  1958. "name": "Chris Corbyn"
  1959. },
  1960. {
  1961. "name": "Fabien Potencier",
  1962. "email": "fabien@symfony.com"
  1963. }
  1964. ],
  1965. "description": "Swiftmailer, free feature-rich PHP mailer",
  1966. "homepage": "https://swiftmailer.symfony.com",
  1967. "keywords": [
  1968. "email",
  1969. "mail",
  1970. "mailer"
  1971. ],
  1972. "time": "2019-11-12T09:31:26+00:00"
  1973. },
  1974. {
  1975. "name": "symfony/console",
  1976. "version": "v5.0.5",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/symfony/console.git",
  1980. "reference": "d29e2d36941de13600c399e393a60b8cfe59ac49"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/symfony/console/zipball/d29e2d36941de13600c399e393a60b8cfe59ac49",
  1985. "reference": "d29e2d36941de13600c399e393a60b8cfe59ac49",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "php": "^7.2.5",
  1990. "symfony/polyfill-mbstring": "~1.0",
  1991. "symfony/polyfill-php73": "^1.8",
  1992. "symfony/service-contracts": "^1.1|^2"
  1993. },
  1994. "conflict": {
  1995. "symfony/dependency-injection": "<4.4",
  1996. "symfony/event-dispatcher": "<4.4",
  1997. "symfony/lock": "<4.4",
  1998. "symfony/process": "<4.4"
  1999. },
  2000. "provide": {
  2001. "psr/log-implementation": "1.0"
  2002. },
  2003. "require-dev": {
  2004. "psr/log": "~1.0",
  2005. "symfony/config": "^4.4|^5.0",
  2006. "symfony/dependency-injection": "^4.4|^5.0",
  2007. "symfony/event-dispatcher": "^4.4|^5.0",
  2008. "symfony/lock": "^4.4|^5.0",
  2009. "symfony/process": "^4.4|^5.0",
  2010. "symfony/var-dumper": "^4.4|^5.0"
  2011. },
  2012. "suggest": {
  2013. "psr/log": "For using the console logger",
  2014. "symfony/event-dispatcher": "",
  2015. "symfony/lock": "",
  2016. "symfony/process": ""
  2017. },
  2018. "type": "library",
  2019. "extra": {
  2020. "branch-alias": {
  2021. "dev-master": "5.0-dev"
  2022. }
  2023. },
  2024. "autoload": {
  2025. "psr-4": {
  2026. "Symfony\\Component\\Console\\": ""
  2027. },
  2028. "exclude-from-classmap": [
  2029. "/Tests/"
  2030. ]
  2031. },
  2032. "notification-url": "https://packagist.org/downloads/",
  2033. "license": [
  2034. "MIT"
  2035. ],
  2036. "authors": [
  2037. {
  2038. "name": "Fabien Potencier",
  2039. "email": "fabien@symfony.com"
  2040. },
  2041. {
  2042. "name": "Symfony Community",
  2043. "homepage": "https://symfony.com/contributors"
  2044. }
  2045. ],
  2046. "description": "Symfony Console Component",
  2047. "homepage": "https://symfony.com",
  2048. "time": "2020-02-24T15:05:31+00:00"
  2049. },
  2050. {
  2051. "name": "symfony/css-selector",
  2052. "version": "v5.0.5",
  2053. "source": {
  2054. "type": "git",
  2055. "url": "https://github.com/symfony/css-selector.git",
  2056. "reference": "a0b51ba9938ccc206d9284de7eb527c2d4550b44"
  2057. },
  2058. "dist": {
  2059. "type": "zip",
  2060. "url": "https://api.github.com/repos/symfony/css-selector/zipball/a0b51ba9938ccc206d9284de7eb527c2d4550b44",
  2061. "reference": "a0b51ba9938ccc206d9284de7eb527c2d4550b44",
  2062. "shasum": ""
  2063. },
  2064. "require": {
  2065. "php": "^7.2.5"
  2066. },
  2067. "type": "library",
  2068. "extra": {
  2069. "branch-alias": {
  2070. "dev-master": "5.0-dev"
  2071. }
  2072. },
  2073. "autoload": {
  2074. "psr-4": {
  2075. "Symfony\\Component\\CssSelector\\": ""
  2076. },
  2077. "exclude-from-classmap": [
  2078. "/Tests/"
  2079. ]
  2080. },
  2081. "notification-url": "https://packagist.org/downloads/",
  2082. "license": [
  2083. "MIT"
  2084. ],
  2085. "authors": [
  2086. {
  2087. "name": "Fabien Potencier",
  2088. "email": "fabien@symfony.com"
  2089. },
  2090. {
  2091. "name": "Jean-François Simon",
  2092. "email": "jeanfrancois.simon@sensiolabs.com"
  2093. },
  2094. {
  2095. "name": "Symfony Community",
  2096. "homepage": "https://symfony.com/contributors"
  2097. }
  2098. ],
  2099. "description": "Symfony CssSelector Component",
  2100. "homepage": "https://symfony.com",
  2101. "time": "2020-02-04T09:41:09+00:00"
  2102. },
  2103. {
  2104. "name": "symfony/dom-crawler",
  2105. "version": "v5.0.5",
  2106. "source": {
  2107. "type": "git",
  2108. "url": "https://github.com/symfony/dom-crawler.git",
  2109. "reference": "4368bdd61b83af365b8f23e9616d2a2ed52cbe7c"
  2110. },
  2111. "dist": {
  2112. "type": "zip",
  2113. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4368bdd61b83af365b8f23e9616d2a2ed52cbe7c",
  2114. "reference": "4368bdd61b83af365b8f23e9616d2a2ed52cbe7c",
  2115. "shasum": ""
  2116. },
  2117. "require": {
  2118. "php": "^7.2.5",
  2119. "symfony/polyfill-ctype": "~1.8",
  2120. "symfony/polyfill-mbstring": "~1.0"
  2121. },
  2122. "conflict": {
  2123. "masterminds/html5": "<2.6"
  2124. },
  2125. "require-dev": {
  2126. "masterminds/html5": "^2.6",
  2127. "symfony/css-selector": "^4.4|^5.0"
  2128. },
  2129. "suggest": {
  2130. "symfony/css-selector": ""
  2131. },
  2132. "type": "library",
  2133. "extra": {
  2134. "branch-alias": {
  2135. "dev-master": "5.0-dev"
  2136. }
  2137. },
  2138. "autoload": {
  2139. "psr-4": {
  2140. "Symfony\\Component\\DomCrawler\\": ""
  2141. },
  2142. "exclude-from-classmap": [
  2143. "/Tests/"
  2144. ]
  2145. },
  2146. "notification-url": "https://packagist.org/downloads/",
  2147. "license": [
  2148. "MIT"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "Fabien Potencier",
  2153. "email": "fabien@symfony.com"
  2154. },
  2155. {
  2156. "name": "Symfony Community",
  2157. "homepage": "https://symfony.com/contributors"
  2158. }
  2159. ],
  2160. "description": "Symfony DomCrawler Component",
  2161. "homepage": "https://symfony.com",
  2162. "time": "2020-02-29T10:07:09+00:00"
  2163. },
  2164. {
  2165. "name": "symfony/error-handler",
  2166. "version": "v5.0.5",
  2167. "source": {
  2168. "type": "git",
  2169. "url": "https://github.com/symfony/error-handler.git",
  2170. "reference": "24a938d9913f42d006ee1ca0164ea1f29c1067ec"
  2171. },
  2172. "dist": {
  2173. "type": "zip",
  2174. "url": "https://api.github.com/repos/symfony/error-handler/zipball/24a938d9913f42d006ee1ca0164ea1f29c1067ec",
  2175. "reference": "24a938d9913f42d006ee1ca0164ea1f29c1067ec",
  2176. "shasum": ""
  2177. },
  2178. "require": {
  2179. "php": "^7.2.5",
  2180. "psr/log": "^1.0",
  2181. "symfony/var-dumper": "^4.4|^5.0"
  2182. },
  2183. "require-dev": {
  2184. "symfony/http-kernel": "^4.4|^5.0",
  2185. "symfony/serializer": "^4.4|^5.0"
  2186. },
  2187. "type": "library",
  2188. "extra": {
  2189. "branch-alias": {
  2190. "dev-master": "5.0-dev"
  2191. }
  2192. },
  2193. "autoload": {
  2194. "psr-4": {
  2195. "Symfony\\Component\\ErrorHandler\\": ""
  2196. },
  2197. "exclude-from-classmap": [
  2198. "/Tests/"
  2199. ]
  2200. },
  2201. "notification-url": "https://packagist.org/downloads/",
  2202. "license": [
  2203. "MIT"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "Fabien Potencier",
  2208. "email": "fabien@symfony.com"
  2209. },
  2210. {
  2211. "name": "Symfony Community",
  2212. "homepage": "https://symfony.com/contributors"
  2213. }
  2214. ],
  2215. "description": "Symfony ErrorHandler Component",
  2216. "homepage": "https://symfony.com",
  2217. "time": "2020-02-29T10:07:09+00:00"
  2218. },
  2219. {
  2220. "name": "symfony/event-dispatcher",
  2221. "version": "v5.0.5",
  2222. "source": {
  2223. "type": "git",
  2224. "url": "https://github.com/symfony/event-dispatcher.git",
  2225. "reference": "b45ad88b253c5a9702ce218e201d89c85d148cea"
  2226. },
  2227. "dist": {
  2228. "type": "zip",
  2229. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b45ad88b253c5a9702ce218e201d89c85d148cea",
  2230. "reference": "b45ad88b253c5a9702ce218e201d89c85d148cea",
  2231. "shasum": ""
  2232. },
  2233. "require": {
  2234. "php": "^7.2.5",
  2235. "symfony/event-dispatcher-contracts": "^2"
  2236. },
  2237. "conflict": {
  2238. "symfony/dependency-injection": "<4.4"
  2239. },
  2240. "provide": {
  2241. "psr/event-dispatcher-implementation": "1.0",
  2242. "symfony/event-dispatcher-implementation": "2.0"
  2243. },
  2244. "require-dev": {
  2245. "psr/log": "~1.0",
  2246. "symfony/config": "^4.4|^5.0",
  2247. "symfony/dependency-injection": "^4.4|^5.0",
  2248. "symfony/expression-language": "^4.4|^5.0",
  2249. "symfony/http-foundation": "^4.4|^5.0",
  2250. "symfony/service-contracts": "^1.1|^2",
  2251. "symfony/stopwatch": "^4.4|^5.0"
  2252. },
  2253. "suggest": {
  2254. "symfony/dependency-injection": "",
  2255. "symfony/http-kernel": ""
  2256. },
  2257. "type": "library",
  2258. "extra": {
  2259. "branch-alias": {
  2260. "dev-master": "5.0-dev"
  2261. }
  2262. },
  2263. "autoload": {
  2264. "psr-4": {
  2265. "Symfony\\Component\\EventDispatcher\\": ""
  2266. },
  2267. "exclude-from-classmap": [
  2268. "/Tests/"
  2269. ]
  2270. },
  2271. "notification-url": "https://packagist.org/downloads/",
  2272. "license": [
  2273. "MIT"
  2274. ],
  2275. "authors": [
  2276. {
  2277. "name": "Fabien Potencier",
  2278. "email": "fabien@symfony.com"
  2279. },
  2280. {
  2281. "name": "Symfony Community",
  2282. "homepage": "https://symfony.com/contributors"
  2283. }
  2284. ],
  2285. "description": "Symfony EventDispatcher Component",
  2286. "homepage": "https://symfony.com",
  2287. "time": "2020-02-22T20:09:08+00:00"
  2288. },
  2289. {
  2290. "name": "symfony/event-dispatcher-contracts",
  2291. "version": "v2.0.1",
  2292. "source": {
  2293. "type": "git",
  2294. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2295. "reference": "af23c2584d4577d54661c434446fb8fbed6025dd"
  2296. },
  2297. "dist": {
  2298. "type": "zip",
  2299. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/af23c2584d4577d54661c434446fb8fbed6025dd",
  2300. "reference": "af23c2584d4577d54661c434446fb8fbed6025dd",
  2301. "shasum": ""
  2302. },
  2303. "require": {
  2304. "php": "^7.2.5",
  2305. "psr/event-dispatcher": "^1"
  2306. },
  2307. "suggest": {
  2308. "symfony/event-dispatcher-implementation": ""
  2309. },
  2310. "type": "library",
  2311. "extra": {
  2312. "branch-alias": {
  2313. "dev-master": "2.0-dev"
  2314. }
  2315. },
  2316. "autoload": {
  2317. "psr-4": {
  2318. "Symfony\\Contracts\\EventDispatcher\\": ""
  2319. }
  2320. },
  2321. "notification-url": "https://packagist.org/downloads/",
  2322. "license": [
  2323. "MIT"
  2324. ],
  2325. "authors": [
  2326. {
  2327. "name": "Nicolas Grekas",
  2328. "email": "p@tchwork.com"
  2329. },
  2330. {
  2331. "name": "Symfony Community",
  2332. "homepage": "https://symfony.com/contributors"
  2333. }
  2334. ],
  2335. "description": "Generic abstractions related to dispatching event",
  2336. "homepage": "https://symfony.com",
  2337. "keywords": [
  2338. "abstractions",
  2339. "contracts",
  2340. "decoupling",
  2341. "interfaces",
  2342. "interoperability",
  2343. "standards"
  2344. ],
  2345. "time": "2019-11-18T17:27:11+00:00"
  2346. },
  2347. {
  2348. "name": "symfony/finder",
  2349. "version": "v5.0.5",
  2350. "source": {
  2351. "type": "git",
  2352. "url": "https://github.com/symfony/finder.git",
  2353. "reference": "6251f201187ca9d66f6b099d3de65d279e971138"
  2354. },
  2355. "dist": {
  2356. "type": "zip",
  2357. "url": "https://api.github.com/repos/symfony/finder/zipball/6251f201187ca9d66f6b099d3de65d279e971138",
  2358. "reference": "6251f201187ca9d66f6b099d3de65d279e971138",
  2359. "shasum": ""
  2360. },
  2361. "require": {
  2362. "php": "^7.2.5"
  2363. },
  2364. "type": "library",
  2365. "extra": {
  2366. "branch-alias": {
  2367. "dev-master": "5.0-dev"
  2368. }
  2369. },
  2370. "autoload": {
  2371. "psr-4": {
  2372. "Symfony\\Component\\Finder\\": ""
  2373. },
  2374. "exclude-from-classmap": [
  2375. "/Tests/"
  2376. ]
  2377. },
  2378. "notification-url": "https://packagist.org/downloads/",
  2379. "license": [
  2380. "MIT"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Fabien Potencier",
  2385. "email": "fabien@symfony.com"
  2386. },
  2387. {
  2388. "name": "Symfony Community",
  2389. "homepage": "https://symfony.com/contributors"
  2390. }
  2391. ],
  2392. "description": "Symfony Finder Component",
  2393. "homepage": "https://symfony.com",
  2394. "time": "2020-02-14T07:43:07+00:00"
  2395. },
  2396. {
  2397. "name": "symfony/http-foundation",
  2398. "version": "v5.0.5",
  2399. "source": {
  2400. "type": "git",
  2401. "url": "https://github.com/symfony/http-foundation.git",
  2402. "reference": "6f9c2ba72f4295d7ce6cf9f79dbb18036291d335"
  2403. },
  2404. "dist": {
  2405. "type": "zip",
  2406. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6f9c2ba72f4295d7ce6cf9f79dbb18036291d335",
  2407. "reference": "6f9c2ba72f4295d7ce6cf9f79dbb18036291d335",
  2408. "shasum": ""
  2409. },
  2410. "require": {
  2411. "php": "^7.2.5",
  2412. "symfony/mime": "^4.4|^5.0",
  2413. "symfony/polyfill-mbstring": "~1.1"
  2414. },
  2415. "require-dev": {
  2416. "predis/predis": "~1.0",
  2417. "symfony/expression-language": "^4.4|^5.0"
  2418. },
  2419. "type": "library",
  2420. "extra": {
  2421. "branch-alias": {
  2422. "dev-master": "5.0-dev"
  2423. }
  2424. },
  2425. "autoload": {
  2426. "psr-4": {
  2427. "Symfony\\Component\\HttpFoundation\\": ""
  2428. },
  2429. "exclude-from-classmap": [
  2430. "/Tests/"
  2431. ]
  2432. },
  2433. "notification-url": "https://packagist.org/downloads/",
  2434. "license": [
  2435. "MIT"
  2436. ],
  2437. "authors": [
  2438. {
  2439. "name": "Fabien Potencier",
  2440. "email": "fabien@symfony.com"
  2441. },
  2442. {
  2443. "name": "Symfony Community",
  2444. "homepage": "https://symfony.com/contributors"
  2445. }
  2446. ],
  2447. "description": "Symfony HttpFoundation Component",
  2448. "homepage": "https://symfony.com",
  2449. "time": "2020-02-14T07:43:07+00:00"
  2450. },
  2451. {
  2452. "name": "symfony/http-kernel",
  2453. "version": "v5.0.5",
  2454. "source": {
  2455. "type": "git",
  2456. "url": "https://github.com/symfony/http-kernel.git",
  2457. "reference": "021d7d54e080405678f2d8c54cb31d0bb03b4520"
  2458. },
  2459. "dist": {
  2460. "type": "zip",
  2461. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/021d7d54e080405678f2d8c54cb31d0bb03b4520",
  2462. "reference": "021d7d54e080405678f2d8c54cb31d0bb03b4520",
  2463. "shasum": ""
  2464. },
  2465. "require": {
  2466. "php": "^7.2.5",
  2467. "psr/log": "~1.0",
  2468. "symfony/error-handler": "^4.4|^5.0",
  2469. "symfony/event-dispatcher": "^5.0",
  2470. "symfony/http-foundation": "^4.4|^5.0",
  2471. "symfony/polyfill-ctype": "^1.8",
  2472. "symfony/polyfill-php73": "^1.9"
  2473. },
  2474. "conflict": {
  2475. "symfony/browser-kit": "<4.4",
  2476. "symfony/cache": "<5.0",
  2477. "symfony/config": "<5.0",
  2478. "symfony/dependency-injection": "<4.4",
  2479. "symfony/doctrine-bridge": "<5.0",
  2480. "symfony/form": "<5.0",
  2481. "symfony/http-client": "<5.0",
  2482. "symfony/mailer": "<5.0",
  2483. "symfony/messenger": "<5.0",
  2484. "symfony/translation": "<5.0",
  2485. "symfony/twig-bridge": "<5.0",
  2486. "symfony/validator": "<5.0",
  2487. "twig/twig": "<2.4"
  2488. },
  2489. "provide": {
  2490. "psr/log-implementation": "1.0"
  2491. },
  2492. "require-dev": {
  2493. "psr/cache": "~1.0",
  2494. "symfony/browser-kit": "^4.4|^5.0",
  2495. "symfony/config": "^5.0",
  2496. "symfony/console": "^4.4|^5.0",
  2497. "symfony/css-selector": "^4.4|^5.0",
  2498. "symfony/dependency-injection": "^4.4|^5.0",
  2499. "symfony/dom-crawler": "^4.4|^5.0",
  2500. "symfony/expression-language": "^4.4|^5.0",
  2501. "symfony/finder": "^4.4|^5.0",
  2502. "symfony/process": "^4.4|^5.0",
  2503. "symfony/routing": "^4.4|^5.0",
  2504. "symfony/stopwatch": "^4.4|^5.0",
  2505. "symfony/translation": "^4.4|^5.0",
  2506. "symfony/translation-contracts": "^1.1|^2",
  2507. "twig/twig": "^2.4|^3.0"
  2508. },
  2509. "suggest": {
  2510. "symfony/browser-kit": "",
  2511. "symfony/config": "",
  2512. "symfony/console": "",
  2513. "symfony/dependency-injection": ""
  2514. },
  2515. "type": "library",
  2516. "extra": {
  2517. "branch-alias": {
  2518. "dev-master": "5.0-dev"
  2519. }
  2520. },
  2521. "autoload": {
  2522. "psr-4": {
  2523. "Symfony\\Component\\HttpKernel\\": ""
  2524. },
  2525. "exclude-from-classmap": [
  2526. "/Tests/"
  2527. ]
  2528. },
  2529. "notification-url": "https://packagist.org/downloads/",
  2530. "license": [
  2531. "MIT"
  2532. ],
  2533. "authors": [
  2534. {
  2535. "name": "Fabien Potencier",
  2536. "email": "fabien@symfony.com"
  2537. },
  2538. {
  2539. "name": "Symfony Community",
  2540. "homepage": "https://symfony.com/contributors"
  2541. }
  2542. ],
  2543. "description": "Symfony HttpKernel Component",
  2544. "homepage": "https://symfony.com",
  2545. "time": "2020-02-29T10:41:30+00:00"
  2546. },
  2547. {
  2548. "name": "symfony/mime",
  2549. "version": "v5.0.5",
  2550. "source": {
  2551. "type": "git",
  2552. "url": "https://github.com/symfony/mime.git",
  2553. "reference": "9b3e5b5e58c56bbd76628c952d2b78556d305f3c"
  2554. },
  2555. "dist": {
  2556. "type": "zip",
  2557. "url": "https://api.github.com/repos/symfony/mime/zipball/9b3e5b5e58c56bbd76628c952d2b78556d305f3c",
  2558. "reference": "9b3e5b5e58c56bbd76628c952d2b78556d305f3c",
  2559. "shasum": ""
  2560. },
  2561. "require": {
  2562. "php": "^7.2.5",
  2563. "symfony/polyfill-intl-idn": "^1.10",
  2564. "symfony/polyfill-mbstring": "^1.0"
  2565. },
  2566. "conflict": {
  2567. "symfony/mailer": "<4.4"
  2568. },
  2569. "require-dev": {
  2570. "egulias/email-validator": "^2.1.10",
  2571. "symfony/dependency-injection": "^4.4|^5.0"
  2572. },
  2573. "type": "library",
  2574. "extra": {
  2575. "branch-alias": {
  2576. "dev-master": "5.0-dev"
  2577. }
  2578. },
  2579. "autoload": {
  2580. "psr-4": {
  2581. "Symfony\\Component\\Mime\\": ""
  2582. },
  2583. "exclude-from-classmap": [
  2584. "/Tests/"
  2585. ]
  2586. },
  2587. "notification-url": "https://packagist.org/downloads/",
  2588. "license": [
  2589. "MIT"
  2590. ],
  2591. "authors": [
  2592. {
  2593. "name": "Fabien Potencier",
  2594. "email": "fabien@symfony.com"
  2595. },
  2596. {
  2597. "name": "Symfony Community",
  2598. "homepage": "https://symfony.com/contributors"
  2599. }
  2600. ],
  2601. "description": "A library to manipulate MIME messages",
  2602. "homepage": "https://symfony.com",
  2603. "keywords": [
  2604. "mime",
  2605. "mime-type"
  2606. ],
  2607. "time": "2020-02-04T09:41:09+00:00"
  2608. },
  2609. {
  2610. "name": "symfony/polyfill-ctype",
  2611. "version": "v1.14.0",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/symfony/polyfill-ctype.git",
  2615. "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/fbdeaec0df06cf3d51c93de80c7eb76e271f5a38",
  2620. "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38",
  2621. "shasum": ""
  2622. },
  2623. "require": {
  2624. "php": ">=5.3.3"
  2625. },
  2626. "suggest": {
  2627. "ext-ctype": "For best performance"
  2628. },
  2629. "type": "library",
  2630. "extra": {
  2631. "branch-alias": {
  2632. "dev-master": "1.14-dev"
  2633. }
  2634. },
  2635. "autoload": {
  2636. "psr-4": {
  2637. "Symfony\\Polyfill\\Ctype\\": ""
  2638. },
  2639. "files": [
  2640. "bootstrap.php"
  2641. ]
  2642. },
  2643. "notification-url": "https://packagist.org/downloads/",
  2644. "license": [
  2645. "MIT"
  2646. ],
  2647. "authors": [
  2648. {
  2649. "name": "Gert de Pagter",
  2650. "email": "BackEndTea@gmail.com"
  2651. },
  2652. {
  2653. "name": "Symfony Community",
  2654. "homepage": "https://symfony.com/contributors"
  2655. }
  2656. ],
  2657. "description": "Symfony polyfill for ctype functions",
  2658. "homepage": "https://symfony.com",
  2659. "keywords": [
  2660. "compatibility",
  2661. "ctype",
  2662. "polyfill",
  2663. "portable"
  2664. ],
  2665. "time": "2020-01-13T11:15:53+00:00"
  2666. },
  2667. {
  2668. "name": "symfony/polyfill-iconv",
  2669. "version": "v1.14.0",
  2670. "source": {
  2671. "type": "git",
  2672. "url": "https://github.com/symfony/polyfill-iconv.git",
  2673. "reference": "926832ce51059bb58211b7b2080a88e0c3b5328e"
  2674. },
  2675. "dist": {
  2676. "type": "zip",
  2677. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/926832ce51059bb58211b7b2080a88e0c3b5328e",
  2678. "reference": "926832ce51059bb58211b7b2080a88e0c3b5328e",
  2679. "shasum": ""
  2680. },
  2681. "require": {
  2682. "php": ">=5.3.3"
  2683. },
  2684. "suggest": {
  2685. "ext-iconv": "For best performance"
  2686. },
  2687. "type": "library",
  2688. "extra": {
  2689. "branch-alias": {
  2690. "dev-master": "1.14-dev"
  2691. }
  2692. },
  2693. "autoload": {
  2694. "psr-4": {
  2695. "Symfony\\Polyfill\\Iconv\\": ""
  2696. },
  2697. "files": [
  2698. "bootstrap.php"
  2699. ]
  2700. },
  2701. "notification-url": "https://packagist.org/downloads/",
  2702. "license": [
  2703. "MIT"
  2704. ],
  2705. "authors": [
  2706. {
  2707. "name": "Nicolas Grekas",
  2708. "email": "p@tchwork.com"
  2709. },
  2710. {
  2711. "name": "Symfony Community",
  2712. "homepage": "https://symfony.com/contributors"
  2713. }
  2714. ],
  2715. "description": "Symfony polyfill for the Iconv extension",
  2716. "homepage": "https://symfony.com",
  2717. "keywords": [
  2718. "compatibility",
  2719. "iconv",
  2720. "polyfill",
  2721. "portable",
  2722. "shim"
  2723. ],
  2724. "time": "2020-01-13T11:15:53+00:00"
  2725. },
  2726. {
  2727. "name": "symfony/polyfill-intl-idn",
  2728. "version": "v1.14.0",
  2729. "source": {
  2730. "type": "git",
  2731. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  2732. "reference": "6842f1a39cf7d580655688069a03dd7cd83d244a"
  2733. },
  2734. "dist": {
  2735. "type": "zip",
  2736. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6842f1a39cf7d580655688069a03dd7cd83d244a",
  2737. "reference": "6842f1a39cf7d580655688069a03dd7cd83d244a",
  2738. "shasum": ""
  2739. },
  2740. "require": {
  2741. "php": ">=5.3.3",
  2742. "symfony/polyfill-mbstring": "^1.3",
  2743. "symfony/polyfill-php72": "^1.10"
  2744. },
  2745. "suggest": {
  2746. "ext-intl": "For best performance"
  2747. },
  2748. "type": "library",
  2749. "extra": {
  2750. "branch-alias": {
  2751. "dev-master": "1.14-dev"
  2752. }
  2753. },
  2754. "autoload": {
  2755. "psr-4": {
  2756. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2757. },
  2758. "files": [
  2759. "bootstrap.php"
  2760. ]
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "Laurent Bassin",
  2769. "email": "laurent@bassin.info"
  2770. },
  2771. {
  2772. "name": "Symfony Community",
  2773. "homepage": "https://symfony.com/contributors"
  2774. }
  2775. ],
  2776. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2777. "homepage": "https://symfony.com",
  2778. "keywords": [
  2779. "compatibility",
  2780. "idn",
  2781. "intl",
  2782. "polyfill",
  2783. "portable",
  2784. "shim"
  2785. ],
  2786. "time": "2020-01-17T12:01:36+00:00"
  2787. },
  2788. {
  2789. "name": "symfony/polyfill-mbstring",
  2790. "version": "v1.14.0",
  2791. "source": {
  2792. "type": "git",
  2793. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2794. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2"
  2795. },
  2796. "dist": {
  2797. "type": "zip",
  2798. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2",
  2799. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2",
  2800. "shasum": ""
  2801. },
  2802. "require": {
  2803. "php": ">=5.3.3"
  2804. },
  2805. "suggest": {
  2806. "ext-mbstring": "For best performance"
  2807. },
  2808. "type": "library",
  2809. "extra": {
  2810. "branch-alias": {
  2811. "dev-master": "1.14-dev"
  2812. }
  2813. },
  2814. "autoload": {
  2815. "psr-4": {
  2816. "Symfony\\Polyfill\\Mbstring\\": ""
  2817. },
  2818. "files": [
  2819. "bootstrap.php"
  2820. ]
  2821. },
  2822. "notification-url": "https://packagist.org/downloads/",
  2823. "license": [
  2824. "MIT"
  2825. ],
  2826. "authors": [
  2827. {
  2828. "name": "Nicolas Grekas",
  2829. "email": "p@tchwork.com"
  2830. },
  2831. {
  2832. "name": "Symfony Community",
  2833. "homepage": "https://symfony.com/contributors"
  2834. }
  2835. ],
  2836. "description": "Symfony polyfill for the Mbstring extension",
  2837. "homepage": "https://symfony.com",
  2838. "keywords": [
  2839. "compatibility",
  2840. "mbstring",
  2841. "polyfill",
  2842. "portable",
  2843. "shim"
  2844. ],
  2845. "time": "2020-01-13T11:15:53+00:00"
  2846. },
  2847. {
  2848. "name": "symfony/polyfill-php72",
  2849. "version": "v1.14.0",
  2850. "source": {
  2851. "type": "git",
  2852. "url": "https://github.com/symfony/polyfill-php72.git",
  2853. "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf"
  2854. },
  2855. "dist": {
  2856. "type": "zip",
  2857. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf",
  2858. "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf",
  2859. "shasum": ""
  2860. },
  2861. "require": {
  2862. "php": ">=5.3.3"
  2863. },
  2864. "type": "library",
  2865. "extra": {
  2866. "branch-alias": {
  2867. "dev-master": "1.14-dev"
  2868. }
  2869. },
  2870. "autoload": {
  2871. "psr-4": {
  2872. "Symfony\\Polyfill\\Php72\\": ""
  2873. },
  2874. "files": [
  2875. "bootstrap.php"
  2876. ]
  2877. },
  2878. "notification-url": "https://packagist.org/downloads/",
  2879. "license": [
  2880. "MIT"
  2881. ],
  2882. "authors": [
  2883. {
  2884. "name": "Nicolas Grekas",
  2885. "email": "p@tchwork.com"
  2886. },
  2887. {
  2888. "name": "Symfony Community",
  2889. "homepage": "https://symfony.com/contributors"
  2890. }
  2891. ],
  2892. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2893. "homepage": "https://symfony.com",
  2894. "keywords": [
  2895. "compatibility",
  2896. "polyfill",
  2897. "portable",
  2898. "shim"
  2899. ],
  2900. "time": "2020-01-13T11:15:53+00:00"
  2901. },
  2902. {
  2903. "name": "symfony/polyfill-php73",
  2904. "version": "v1.14.0",
  2905. "source": {
  2906. "type": "git",
  2907. "url": "https://github.com/symfony/polyfill-php73.git",
  2908. "reference": "5e66a0fa1070bf46bec4bea7962d285108edd675"
  2909. },
  2910. "dist": {
  2911. "type": "zip",
  2912. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/5e66a0fa1070bf46bec4bea7962d285108edd675",
  2913. "reference": "5e66a0fa1070bf46bec4bea7962d285108edd675",
  2914. "shasum": ""
  2915. },
  2916. "require": {
  2917. "php": ">=5.3.3"
  2918. },
  2919. "type": "library",
  2920. "extra": {
  2921. "branch-alias": {
  2922. "dev-master": "1.14-dev"
  2923. }
  2924. },
  2925. "autoload": {
  2926. "psr-4": {
  2927. "Symfony\\Polyfill\\Php73\\": ""
  2928. },
  2929. "files": [
  2930. "bootstrap.php"
  2931. ],
  2932. "classmap": [
  2933. "Resources/stubs"
  2934. ]
  2935. },
  2936. "notification-url": "https://packagist.org/downloads/",
  2937. "license": [
  2938. "MIT"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "Nicolas Grekas",
  2943. "email": "p@tchwork.com"
  2944. },
  2945. {
  2946. "name": "Symfony Community",
  2947. "homepage": "https://symfony.com/contributors"
  2948. }
  2949. ],
  2950. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2951. "homepage": "https://symfony.com",
  2952. "keywords": [
  2953. "compatibility",
  2954. "polyfill",
  2955. "portable",
  2956. "shim"
  2957. ],
  2958. "time": "2020-01-13T11:15:53+00:00"
  2959. },
  2960. {
  2961. "name": "symfony/process",
  2962. "version": "v5.0.5",
  2963. "source": {
  2964. "type": "git",
  2965. "url": "https://github.com/symfony/process.git",
  2966. "reference": "fd4a86dd7e36437f2fc080d8c42c7415d828a0a8"
  2967. },
  2968. "dist": {
  2969. "type": "zip",
  2970. "url": "https://api.github.com/repos/symfony/process/zipball/fd4a86dd7e36437f2fc080d8c42c7415d828a0a8",
  2971. "reference": "fd4a86dd7e36437f2fc080d8c42c7415d828a0a8",
  2972. "shasum": ""
  2973. },
  2974. "require": {
  2975. "php": "^7.2.5"
  2976. },
  2977. "type": "library",
  2978. "extra": {
  2979. "branch-alias": {
  2980. "dev-master": "5.0-dev"
  2981. }
  2982. },
  2983. "autoload": {
  2984. "psr-4": {
  2985. "Symfony\\Component\\Process\\": ""
  2986. },
  2987. "exclude-from-classmap": [
  2988. "/Tests/"
  2989. ]
  2990. },
  2991. "notification-url": "https://packagist.org/downloads/",
  2992. "license": [
  2993. "MIT"
  2994. ],
  2995. "authors": [
  2996. {
  2997. "name": "Fabien Potencier",
  2998. "email": "fabien@symfony.com"
  2999. },
  3000. {
  3001. "name": "Symfony Community",
  3002. "homepage": "https://symfony.com/contributors"
  3003. }
  3004. ],
  3005. "description": "Symfony Process Component",
  3006. "homepage": "https://symfony.com",
  3007. "time": "2020-02-08T17:00:58+00:00"
  3008. },
  3009. {
  3010. "name": "symfony/routing",
  3011. "version": "v5.0.5",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/symfony/routing.git",
  3015. "reference": "d6ca39fd05c1902bf34d724ba06fb8044a0b46de"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/symfony/routing/zipball/d6ca39fd05c1902bf34d724ba06fb8044a0b46de",
  3020. "reference": "d6ca39fd05c1902bf34d724ba06fb8044a0b46de",
  3021. "shasum": ""
  3022. },
  3023. "require": {
  3024. "php": "^7.2.5"
  3025. },
  3026. "conflict": {
  3027. "symfony/config": "<5.0",
  3028. "symfony/dependency-injection": "<4.4",
  3029. "symfony/yaml": "<4.4"
  3030. },
  3031. "require-dev": {
  3032. "doctrine/annotations": "~1.2",
  3033. "psr/log": "~1.0",
  3034. "symfony/config": "^5.0",
  3035. "symfony/dependency-injection": "^4.4|^5.0",
  3036. "symfony/expression-language": "^4.4|^5.0",
  3037. "symfony/http-foundation": "^4.4|^5.0",
  3038. "symfony/yaml": "^4.4|^5.0"
  3039. },
  3040. "suggest": {
  3041. "doctrine/annotations": "For using the annotation loader",
  3042. "symfony/config": "For using the all-in-one router or any loader",
  3043. "symfony/expression-language": "For using expression matching",
  3044. "symfony/http-foundation": "For using a Symfony Request object",
  3045. "symfony/yaml": "For using the YAML loader"
  3046. },
  3047. "type": "library",
  3048. "extra": {
  3049. "branch-alias": {
  3050. "dev-master": "5.0-dev"
  3051. }
  3052. },
  3053. "autoload": {
  3054. "psr-4": {
  3055. "Symfony\\Component\\Routing\\": ""
  3056. },
  3057. "exclude-from-classmap": [
  3058. "/Tests/"
  3059. ]
  3060. },
  3061. "notification-url": "https://packagist.org/downloads/",
  3062. "license": [
  3063. "MIT"
  3064. ],
  3065. "authors": [
  3066. {
  3067. "name": "Fabien Potencier",
  3068. "email": "fabien@symfony.com"
  3069. },
  3070. {
  3071. "name": "Symfony Community",
  3072. "homepage": "https://symfony.com/contributors"
  3073. }
  3074. ],
  3075. "description": "Symfony Routing Component",
  3076. "homepage": "https://symfony.com",
  3077. "keywords": [
  3078. "router",
  3079. "routing",
  3080. "uri",
  3081. "url"
  3082. ],
  3083. "time": "2020-02-25T14:24:11+00:00"
  3084. },
  3085. {
  3086. "name": "symfony/service-contracts",
  3087. "version": "v2.0.1",
  3088. "source": {
  3089. "type": "git",
  3090. "url": "https://github.com/symfony/service-contracts.git",
  3091. "reference": "144c5e51266b281231e947b51223ba14acf1a749"
  3092. },
  3093. "dist": {
  3094. "type": "zip",
  3095. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749",
  3096. "reference": "144c5e51266b281231e947b51223ba14acf1a749",
  3097. "shasum": ""
  3098. },
  3099. "require": {
  3100. "php": "^7.2.5",
  3101. "psr/container": "^1.0"
  3102. },
  3103. "suggest": {
  3104. "symfony/service-implementation": ""
  3105. },
  3106. "type": "library",
  3107. "extra": {
  3108. "branch-alias": {
  3109. "dev-master": "2.0-dev"
  3110. }
  3111. },
  3112. "autoload": {
  3113. "psr-4": {
  3114. "Symfony\\Contracts\\Service\\": ""
  3115. }
  3116. },
  3117. "notification-url": "https://packagist.org/downloads/",
  3118. "license": [
  3119. "MIT"
  3120. ],
  3121. "authors": [
  3122. {
  3123. "name": "Nicolas Grekas",
  3124. "email": "p@tchwork.com"
  3125. },
  3126. {
  3127. "name": "Symfony Community",
  3128. "homepage": "https://symfony.com/contributors"
  3129. }
  3130. ],
  3131. "description": "Generic abstractions related to writing services",
  3132. "homepage": "https://symfony.com",
  3133. "keywords": [
  3134. "abstractions",
  3135. "contracts",
  3136. "decoupling",
  3137. "interfaces",
  3138. "interoperability",
  3139. "standards"
  3140. ],
  3141. "time": "2019-11-18T17:27:11+00:00"
  3142. },
  3143. {
  3144. "name": "symfony/translation",
  3145. "version": "v5.0.5",
  3146. "source": {
  3147. "type": "git",
  3148. "url": "https://github.com/symfony/translation.git",
  3149. "reference": "e9b93f42a1fd6aec6a0872d59ee5c8219a7d584b"
  3150. },
  3151. "dist": {
  3152. "type": "zip",
  3153. "url": "https://api.github.com/repos/symfony/translation/zipball/e9b93f42a1fd6aec6a0872d59ee5c8219a7d584b",
  3154. "reference": "e9b93f42a1fd6aec6a0872d59ee5c8219a7d584b",
  3155. "shasum": ""
  3156. },
  3157. "require": {
  3158. "php": "^7.2.5",
  3159. "symfony/polyfill-mbstring": "~1.0",
  3160. "symfony/translation-contracts": "^2"
  3161. },
  3162. "conflict": {
  3163. "symfony/config": "<4.4",
  3164. "symfony/dependency-injection": "<5.0",
  3165. "symfony/http-kernel": "<5.0",
  3166. "symfony/twig-bundle": "<5.0",
  3167. "symfony/yaml": "<4.4"
  3168. },
  3169. "provide": {
  3170. "symfony/translation-implementation": "2.0"
  3171. },
  3172. "require-dev": {
  3173. "psr/log": "~1.0",
  3174. "symfony/config": "^4.4|^5.0",
  3175. "symfony/console": "^4.4|^5.0",
  3176. "symfony/dependency-injection": "^5.0",
  3177. "symfony/finder": "^4.4|^5.0",
  3178. "symfony/http-kernel": "^5.0",
  3179. "symfony/intl": "^4.4|^5.0",
  3180. "symfony/service-contracts": "^1.1.2|^2",
  3181. "symfony/yaml": "^4.4|^5.0"
  3182. },
  3183. "suggest": {
  3184. "psr/log-implementation": "To use logging capability in translator",
  3185. "symfony/config": "",
  3186. "symfony/yaml": ""
  3187. },
  3188. "type": "library",
  3189. "extra": {
  3190. "branch-alias": {
  3191. "dev-master": "5.0-dev"
  3192. }
  3193. },
  3194. "autoload": {
  3195. "psr-4": {
  3196. "Symfony\\Component\\Translation\\": ""
  3197. },
  3198. "exclude-from-classmap": [
  3199. "/Tests/"
  3200. ]
  3201. },
  3202. "notification-url": "https://packagist.org/downloads/",
  3203. "license": [
  3204. "MIT"
  3205. ],
  3206. "authors": [
  3207. {
  3208. "name": "Fabien Potencier",
  3209. "email": "fabien@symfony.com"
  3210. },
  3211. {
  3212. "name": "Symfony Community",
  3213. "homepage": "https://symfony.com/contributors"
  3214. }
  3215. ],
  3216. "description": "Symfony Translation Component",
  3217. "homepage": "https://symfony.com",
  3218. "time": "2020-02-04T07:41:34+00:00"
  3219. },
  3220. {
  3221. "name": "symfony/translation-contracts",
  3222. "version": "v2.0.1",
  3223. "source": {
  3224. "type": "git",
  3225. "url": "https://github.com/symfony/translation-contracts.git",
  3226. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed"
  3227. },
  3228. "dist": {
  3229. "type": "zip",
  3230. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  3231. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  3232. "shasum": ""
  3233. },
  3234. "require": {
  3235. "php": "^7.2.5"
  3236. },
  3237. "suggest": {
  3238. "symfony/translation-implementation": ""
  3239. },
  3240. "type": "library",
  3241. "extra": {
  3242. "branch-alias": {
  3243. "dev-master": "2.0-dev"
  3244. }
  3245. },
  3246. "autoload": {
  3247. "psr-4": {
  3248. "Symfony\\Contracts\\Translation\\": ""
  3249. }
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "MIT"
  3254. ],
  3255. "authors": [
  3256. {
  3257. "name": "Nicolas Grekas",
  3258. "email": "p@tchwork.com"
  3259. },
  3260. {
  3261. "name": "Symfony Community",
  3262. "homepage": "https://symfony.com/contributors"
  3263. }
  3264. ],
  3265. "description": "Generic abstractions related to translation",
  3266. "homepage": "https://symfony.com",
  3267. "keywords": [
  3268. "abstractions",
  3269. "contracts",
  3270. "decoupling",
  3271. "interfaces",
  3272. "interoperability",
  3273. "standards"
  3274. ],
  3275. "time": "2019-11-18T17:27:11+00:00"
  3276. },
  3277. {
  3278. "name": "symfony/var-dumper",
  3279. "version": "v5.0.5",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/symfony/var-dumper.git",
  3283. "reference": "3a37aeb1132d1035536d3d6aa9cb06c2ff9355e9"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3a37aeb1132d1035536d3d6aa9cb06c2ff9355e9",
  3288. "reference": "3a37aeb1132d1035536d3d6aa9cb06c2ff9355e9",
  3289. "shasum": ""
  3290. },
  3291. "require": {
  3292. "php": "^7.2.5",
  3293. "symfony/polyfill-mbstring": "~1.0"
  3294. },
  3295. "conflict": {
  3296. "phpunit/phpunit": "<5.4.3",
  3297. "symfony/console": "<4.4"
  3298. },
  3299. "require-dev": {
  3300. "ext-iconv": "*",
  3301. "symfony/console": "^4.4|^5.0",
  3302. "symfony/process": "^4.4|^5.0",
  3303. "twig/twig": "^2.4|^3.0"
  3304. },
  3305. "suggest": {
  3306. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3307. "ext-intl": "To show region name in time zone dump",
  3308. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3309. },
  3310. "bin": [
  3311. "Resources/bin/var-dump-server"
  3312. ],
  3313. "type": "library",
  3314. "extra": {
  3315. "branch-alias": {
  3316. "dev-master": "5.0-dev"
  3317. }
  3318. },
  3319. "autoload": {
  3320. "files": [
  3321. "Resources/functions/dump.php"
  3322. ],
  3323. "psr-4": {
  3324. "Symfony\\Component\\VarDumper\\": ""
  3325. },
  3326. "exclude-from-classmap": [
  3327. "/Tests/"
  3328. ]
  3329. },
  3330. "notification-url": "https://packagist.org/downloads/",
  3331. "license": [
  3332. "MIT"
  3333. ],
  3334. "authors": [
  3335. {
  3336. "name": "Nicolas Grekas",
  3337. "email": "p@tchwork.com"
  3338. },
  3339. {
  3340. "name": "Symfony Community",
  3341. "homepage": "https://symfony.com/contributors"
  3342. }
  3343. ],
  3344. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3345. "homepage": "https://symfony.com",
  3346. "keywords": [
  3347. "debug",
  3348. "dump"
  3349. ],
  3350. "time": "2020-02-26T22:30:10+00:00"
  3351. },
  3352. {
  3353. "name": "tijsverkoyen/css-to-inline-styles",
  3354. "version": "2.2.2",
  3355. "source": {
  3356. "type": "git",
  3357. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  3358. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15"
  3359. },
  3360. "dist": {
  3361. "type": "zip",
  3362. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  3363. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  3364. "shasum": ""
  3365. },
  3366. "require": {
  3367. "ext-dom": "*",
  3368. "ext-libxml": "*",
  3369. "php": "^5.5 || ^7.0",
  3370. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  3371. },
  3372. "require-dev": {
  3373. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3374. },
  3375. "type": "library",
  3376. "extra": {
  3377. "branch-alias": {
  3378. "dev-master": "2.2.x-dev"
  3379. }
  3380. },
  3381. "autoload": {
  3382. "psr-4": {
  3383. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  3384. }
  3385. },
  3386. "notification-url": "https://packagist.org/downloads/",
  3387. "license": [
  3388. "BSD-3-Clause"
  3389. ],
  3390. "authors": [
  3391. {
  3392. "name": "Tijs Verkoyen",
  3393. "email": "css_to_inline_styles@verkoyen.eu",
  3394. "role": "Developer"
  3395. }
  3396. ],
  3397. "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.",
  3398. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  3399. "time": "2019-10-24T08:53:34+00:00"
  3400. },
  3401. {
  3402. "name": "vlucas/phpdotenv",
  3403. "version": "v4.1.1",
  3404. "source": {
  3405. "type": "git",
  3406. "url": "https://github.com/vlucas/phpdotenv.git",
  3407. "reference": "32bd5ca5a4170f88e27073353013d210a3354ae9"
  3408. },
  3409. "dist": {
  3410. "type": "zip",
  3411. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/32bd5ca5a4170f88e27073353013d210a3354ae9",
  3412. "reference": "32bd5ca5a4170f88e27073353013d210a3354ae9",
  3413. "shasum": ""
  3414. },
  3415. "require": {
  3416. "php": "^5.5.9 || ^7.0",
  3417. "phpoption/phpoption": "^1.7.2",
  3418. "symfony/polyfill-ctype": "^1.9"
  3419. },
  3420. "require-dev": {
  3421. "bamarni/composer-bin-plugin": "^1.3",
  3422. "ext-filter": "*",
  3423. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  3424. },
  3425. "suggest": {
  3426. "ext-filter": "Required to use the boolean validator."
  3427. },
  3428. "type": "library",
  3429. "extra": {
  3430. "branch-alias": {
  3431. "dev-master": "4.1-dev"
  3432. }
  3433. },
  3434. "autoload": {
  3435. "psr-4": {
  3436. "Dotenv\\": "src/"
  3437. }
  3438. },
  3439. "notification-url": "https://packagist.org/downloads/",
  3440. "license": [
  3441. "BSD-3-Clause"
  3442. ],
  3443. "authors": [
  3444. {
  3445. "name": "Graham Campbell",
  3446. "email": "graham@alt-three.com",
  3447. "homepage": "https://gjcampbell.co.uk/"
  3448. },
  3449. {
  3450. "name": "Vance Lucas",
  3451. "email": "vance@vancelucas.com",
  3452. "homepage": "https://vancelucas.com/"
  3453. }
  3454. ],
  3455. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  3456. "keywords": [
  3457. "dotenv",
  3458. "env",
  3459. "environment"
  3460. ],
  3461. "time": "2020-03-01T23:56:01+00:00"
  3462. },
  3463. {
  3464. "name": "voku/portable-ascii",
  3465. "version": "1.4.9",
  3466. "source": {
  3467. "type": "git",
  3468. "url": "https://github.com/voku/portable-ascii.git",
  3469. "reference": "9fd2b224c71448b5f84aef9d499a1428d79776a2"
  3470. },
  3471. "dist": {
  3472. "type": "zip",
  3473. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/9fd2b224c71448b5f84aef9d499a1428d79776a2",
  3474. "reference": "9fd2b224c71448b5f84aef9d499a1428d79776a2",
  3475. "shasum": ""
  3476. },
  3477. "require": {
  3478. "php": ">=7.0.0"
  3479. },
  3480. "require-dev": {
  3481. "phpunit/phpunit": "~6.0 || ~7.0"
  3482. },
  3483. "suggest": {
  3484. "ext-intl": "Use Intl for transliterator_transliterate() support"
  3485. },
  3486. "type": "library",
  3487. "autoload": {
  3488. "psr-4": {
  3489. "voku\\": "src/voku/",
  3490. "voku\\tests\\": "tests/"
  3491. }
  3492. },
  3493. "notification-url": "https://packagist.org/downloads/",
  3494. "license": [
  3495. "MIT"
  3496. ],
  3497. "authors": [
  3498. {
  3499. "name": "Lars Moelleken",
  3500. "homepage": "http://www.moelleken.org/"
  3501. }
  3502. ],
  3503. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  3504. "homepage": "https://github.com/voku/portable-ascii",
  3505. "keywords": [
  3506. "ascii",
  3507. "clean",
  3508. "php"
  3509. ],
  3510. "time": "2020-03-06T02:47:42+00:00"
  3511. }
  3512. ],
  3513. "packages-dev": [
  3514. {
  3515. "name": "doctrine/instantiator",
  3516. "version": "1.3.0",
  3517. "source": {
  3518. "type": "git",
  3519. "url": "https://github.com/doctrine/instantiator.git",
  3520. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  3521. },
  3522. "dist": {
  3523. "type": "zip",
  3524. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  3525. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  3526. "shasum": ""
  3527. },
  3528. "require": {
  3529. "php": "^7.1"
  3530. },
  3531. "require-dev": {
  3532. "doctrine/coding-standard": "^6.0",
  3533. "ext-pdo": "*",
  3534. "ext-phar": "*",
  3535. "phpbench/phpbench": "^0.13",
  3536. "phpstan/phpstan-phpunit": "^0.11",
  3537. "phpstan/phpstan-shim": "^0.11",
  3538. "phpunit/phpunit": "^7.0"
  3539. },
  3540. "type": "library",
  3541. "extra": {
  3542. "branch-alias": {
  3543. "dev-master": "1.2.x-dev"
  3544. }
  3545. },
  3546. "autoload": {
  3547. "psr-4": {
  3548. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3549. }
  3550. },
  3551. "notification-url": "https://packagist.org/downloads/",
  3552. "license": [
  3553. "MIT"
  3554. ],
  3555. "authors": [
  3556. {
  3557. "name": "Marco Pivetta",
  3558. "email": "ocramius@gmail.com",
  3559. "homepage": "http://ocramius.github.com/"
  3560. }
  3561. ],
  3562. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3563. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3564. "keywords": [
  3565. "constructor",
  3566. "instantiate"
  3567. ],
  3568. "time": "2019-10-21T16:45:58+00:00"
  3569. },
  3570. {
  3571. "name": "facade/flare-client-php",
  3572. "version": "1.3.2",
  3573. "source": {
  3574. "type": "git",
  3575. "url": "https://github.com/facade/flare-client-php.git",
  3576. "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004"
  3577. },
  3578. "dist": {
  3579. "type": "zip",
  3580. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/db1e03426e7f9472c9ecd1092aff00f56aa6c004",
  3581. "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004",
  3582. "shasum": ""
  3583. },
  3584. "require": {
  3585. "facade/ignition-contracts": "~1.0",
  3586. "illuminate/pipeline": "^5.5|^6.0|^7.0",
  3587. "php": "^7.1",
  3588. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  3589. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  3590. },
  3591. "require-dev": {
  3592. "larapack/dd": "^1.1",
  3593. "phpunit/phpunit": "^7.5.16",
  3594. "spatie/phpunit-snapshot-assertions": "^2.0"
  3595. },
  3596. "type": "library",
  3597. "extra": {
  3598. "branch-alias": {
  3599. "dev-master": "1.0-dev"
  3600. }
  3601. },
  3602. "autoload": {
  3603. "psr-4": {
  3604. "Facade\\FlareClient\\": "src"
  3605. },
  3606. "files": [
  3607. "src/helpers.php"
  3608. ]
  3609. },
  3610. "notification-url": "https://packagist.org/downloads/",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "description": "Send PHP errors to Flare",
  3615. "homepage": "https://github.com/facade/flare-client-php",
  3616. "keywords": [
  3617. "exception",
  3618. "facade",
  3619. "flare",
  3620. "reporting"
  3621. ],
  3622. "time": "2020-03-02T15:52:04+00:00"
  3623. },
  3624. {
  3625. "name": "facade/ignition",
  3626. "version": "2.0.1",
  3627. "source": {
  3628. "type": "git",
  3629. "url": "https://github.com/facade/ignition.git",
  3630. "reference": "b8dbf7791c81619161270d580a64a30bad41b832"
  3631. },
  3632. "dist": {
  3633. "type": "zip",
  3634. "url": "https://api.github.com/repos/facade/ignition/zipball/b8dbf7791c81619161270d580a64a30bad41b832",
  3635. "reference": "b8dbf7791c81619161270d580a64a30bad41b832",
  3636. "shasum": ""
  3637. },
  3638. "require": {
  3639. "ext-json": "*",
  3640. "ext-mbstring": "*",
  3641. "facade/flare-client-php": "^1.0",
  3642. "facade/ignition-contracts": "^1.0",
  3643. "filp/whoops": "^2.4",
  3644. "illuminate/support": "^7.0",
  3645. "monolog/monolog": "^2.0",
  3646. "php": "^7.2.5",
  3647. "scrivo/highlight.php": "^9.15",
  3648. "symfony/console": "^5.0",
  3649. "symfony/var-dumper": "^5.0"
  3650. },
  3651. "require-dev": {
  3652. "friendsofphp/php-cs-fixer": "^2.14",
  3653. "mockery/mockery": "^1.3",
  3654. "orchestra/testbench": "5.0"
  3655. },
  3656. "suggest": {
  3657. "laravel/telescope": "^2.0"
  3658. },
  3659. "type": "library",
  3660. "extra": {
  3661. "branch-alias": {
  3662. "dev-master": "2.x-dev"
  3663. },
  3664. "laravel": {
  3665. "providers": [
  3666. "Facade\\Ignition\\IgnitionServiceProvider"
  3667. ],
  3668. "aliases": {
  3669. "Flare": "Facade\\Ignition\\Facades\\Flare"
  3670. }
  3671. }
  3672. },
  3673. "autoload": {
  3674. "psr-4": {
  3675. "Facade\\Ignition\\": "src"
  3676. },
  3677. "files": [
  3678. "src/helpers.php"
  3679. ]
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "MIT"
  3684. ],
  3685. "description": "A beautiful error page for Laravel applications.",
  3686. "homepage": "https://github.com/facade/ignition",
  3687. "keywords": [
  3688. "error",
  3689. "flare",
  3690. "laravel",
  3691. "page"
  3692. ],
  3693. "time": "2020-03-05T12:32:22+00:00"
  3694. },
  3695. {
  3696. "name": "facade/ignition-contracts",
  3697. "version": "1.0.0",
  3698. "source": {
  3699. "type": "git",
  3700. "url": "https://github.com/facade/ignition-contracts.git",
  3701. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28"
  3702. },
  3703. "dist": {
  3704. "type": "zip",
  3705. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/f445db0fb86f48e205787b2592840dd9c80ded28",
  3706. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28",
  3707. "shasum": ""
  3708. },
  3709. "require": {
  3710. "php": "^7.1"
  3711. },
  3712. "type": "library",
  3713. "autoload": {
  3714. "psr-4": {
  3715. "Facade\\IgnitionContracts\\": "src"
  3716. }
  3717. },
  3718. "notification-url": "https://packagist.org/downloads/",
  3719. "license": [
  3720. "MIT"
  3721. ],
  3722. "authors": [
  3723. {
  3724. "name": "Freek Van der Herten",
  3725. "email": "freek@spatie.be",
  3726. "homepage": "https://flareapp.io",
  3727. "role": "Developer"
  3728. }
  3729. ],
  3730. "description": "Solution contracts for Ignition",
  3731. "homepage": "https://github.com/facade/ignition-contracts",
  3732. "keywords": [
  3733. "contracts",
  3734. "flare",
  3735. "ignition"
  3736. ],
  3737. "time": "2019-08-30T14:06:08+00:00"
  3738. },
  3739. {
  3740. "name": "filp/whoops",
  3741. "version": "2.7.1",
  3742. "source": {
  3743. "type": "git",
  3744. "url": "https://github.com/filp/whoops.git",
  3745. "reference": "fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130"
  3746. },
  3747. "dist": {
  3748. "type": "zip",
  3749. "url": "https://api.github.com/repos/filp/whoops/zipball/fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130",
  3750. "reference": "fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130",
  3751. "shasum": ""
  3752. },
  3753. "require": {
  3754. "php": "^5.5.9 || ^7.0",
  3755. "psr/log": "^1.0.1"
  3756. },
  3757. "require-dev": {
  3758. "mockery/mockery": "^0.9 || ^1.0",
  3759. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  3760. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  3761. },
  3762. "suggest": {
  3763. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  3764. "whoops/soap": "Formats errors as SOAP responses"
  3765. },
  3766. "type": "library",
  3767. "extra": {
  3768. "branch-alias": {
  3769. "dev-master": "2.6-dev"
  3770. }
  3771. },
  3772. "autoload": {
  3773. "psr-4": {
  3774. "Whoops\\": "src/Whoops/"
  3775. }
  3776. },
  3777. "notification-url": "https://packagist.org/downloads/",
  3778. "license": [
  3779. "MIT"
  3780. ],
  3781. "authors": [
  3782. {
  3783. "name": "Filipe Dobreira",
  3784. "homepage": "https://github.com/filp",
  3785. "role": "Developer"
  3786. }
  3787. ],
  3788. "description": "php error handling for cool kids",
  3789. "homepage": "https://filp.github.io/whoops/",
  3790. "keywords": [
  3791. "error",
  3792. "exception",
  3793. "handling",
  3794. "library",
  3795. "throwable",
  3796. "whoops"
  3797. ],
  3798. "time": "2020-01-15T10:00:00+00:00"
  3799. },
  3800. {
  3801. "name": "fzaninotto/faker",
  3802. "version": "v1.9.1",
  3803. "source": {
  3804. "type": "git",
  3805. "url": "https://github.com/fzaninotto/Faker.git",
  3806. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  3807. },
  3808. "dist": {
  3809. "type": "zip",
  3810. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  3811. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  3812. "shasum": ""
  3813. },
  3814. "require": {
  3815. "php": "^5.3.3 || ^7.0"
  3816. },
  3817. "require-dev": {
  3818. "ext-intl": "*",
  3819. "phpunit/phpunit": "^4.8.35 || ^5.7",
  3820. "squizlabs/php_codesniffer": "^2.9.2"
  3821. },
  3822. "type": "library",
  3823. "extra": {
  3824. "branch-alias": {
  3825. "dev-master": "1.9-dev"
  3826. }
  3827. },
  3828. "autoload": {
  3829. "psr-4": {
  3830. "Faker\\": "src/Faker/"
  3831. }
  3832. },
  3833. "notification-url": "https://packagist.org/downloads/",
  3834. "license": [
  3835. "MIT"
  3836. ],
  3837. "authors": [
  3838. {
  3839. "name": "François Zaninotto"
  3840. }
  3841. ],
  3842. "description": "Faker is a PHP library that generates fake data for you.",
  3843. "keywords": [
  3844. "data",
  3845. "faker",
  3846. "fixtures"
  3847. ],
  3848. "time": "2019-12-12T13:22:17+00:00"
  3849. },
  3850. {
  3851. "name": "hamcrest/hamcrest-php",
  3852. "version": "v2.0.0",
  3853. "source": {
  3854. "type": "git",
  3855. "url": "https://github.com/hamcrest/hamcrest-php.git",
  3856. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  3857. },
  3858. "dist": {
  3859. "type": "zip",
  3860. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  3861. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  3862. "shasum": ""
  3863. },
  3864. "require": {
  3865. "php": "^5.3|^7.0"
  3866. },
  3867. "replace": {
  3868. "cordoval/hamcrest-php": "*",
  3869. "davedevelopment/hamcrest-php": "*",
  3870. "kodova/hamcrest-php": "*"
  3871. },
  3872. "require-dev": {
  3873. "phpunit/php-file-iterator": "1.3.3",
  3874. "phpunit/phpunit": "~4.0",
  3875. "satooshi/php-coveralls": "^1.0"
  3876. },
  3877. "type": "library",
  3878. "extra": {
  3879. "branch-alias": {
  3880. "dev-master": "2.0-dev"
  3881. }
  3882. },
  3883. "autoload": {
  3884. "classmap": [
  3885. "hamcrest"
  3886. ]
  3887. },
  3888. "notification-url": "https://packagist.org/downloads/",
  3889. "license": [
  3890. "BSD"
  3891. ],
  3892. "description": "This is the PHP port of Hamcrest Matchers",
  3893. "keywords": [
  3894. "test"
  3895. ],
  3896. "time": "2016-01-20T08:20:44+00:00"
  3897. },
  3898. {
  3899. "name": "mockery/mockery",
  3900. "version": "1.3.1",
  3901. "source": {
  3902. "type": "git",
  3903. "url": "https://github.com/mockery/mockery.git",
  3904. "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be"
  3905. },
  3906. "dist": {
  3907. "type": "zip",
  3908. "url": "https://api.github.com/repos/mockery/mockery/zipball/f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
  3909. "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
  3910. "shasum": ""
  3911. },
  3912. "require": {
  3913. "hamcrest/hamcrest-php": "~2.0",
  3914. "lib-pcre": ">=7.0",
  3915. "php": ">=5.6.0"
  3916. },
  3917. "require-dev": {
  3918. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  3919. },
  3920. "type": "library",
  3921. "extra": {
  3922. "branch-alias": {
  3923. "dev-master": "1.3.x-dev"
  3924. }
  3925. },
  3926. "autoload": {
  3927. "psr-0": {
  3928. "Mockery": "library/"
  3929. }
  3930. },
  3931. "notification-url": "https://packagist.org/downloads/",
  3932. "license": [
  3933. "BSD-3-Clause"
  3934. ],
  3935. "authors": [
  3936. {
  3937. "name": "Pádraic Brady",
  3938. "email": "padraic.brady@gmail.com",
  3939. "homepage": "http://blog.astrumfutura.com"
  3940. },
  3941. {
  3942. "name": "Dave Marshall",
  3943. "email": "dave.marshall@atstsolutions.co.uk",
  3944. "homepage": "http://davedevelopment.co.uk"
  3945. }
  3946. ],
  3947. "description": "Mockery is a simple yet flexible PHP mock object framework",
  3948. "homepage": "https://github.com/mockery/mockery",
  3949. "keywords": [
  3950. "BDD",
  3951. "TDD",
  3952. "library",
  3953. "mock",
  3954. "mock objects",
  3955. "mockery",
  3956. "stub",
  3957. "test",
  3958. "test double",
  3959. "testing"
  3960. ],
  3961. "time": "2019-12-26T09:49:15+00:00"
  3962. },
  3963. {
  3964. "name": "myclabs/deep-copy",
  3965. "version": "1.9.5",
  3966. "source": {
  3967. "type": "git",
  3968. "url": "https://github.com/myclabs/DeepCopy.git",
  3969. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
  3970. },
  3971. "dist": {
  3972. "type": "zip",
  3973. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
  3974. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
  3975. "shasum": ""
  3976. },
  3977. "require": {
  3978. "php": "^7.1"
  3979. },
  3980. "replace": {
  3981. "myclabs/deep-copy": "self.version"
  3982. },
  3983. "require-dev": {
  3984. "doctrine/collections": "^1.0",
  3985. "doctrine/common": "^2.6",
  3986. "phpunit/phpunit": "^7.1"
  3987. },
  3988. "type": "library",
  3989. "autoload": {
  3990. "psr-4": {
  3991. "DeepCopy\\": "src/DeepCopy/"
  3992. },
  3993. "files": [
  3994. "src/DeepCopy/deep_copy.php"
  3995. ]
  3996. },
  3997. "notification-url": "https://packagist.org/downloads/",
  3998. "license": [
  3999. "MIT"
  4000. ],
  4001. "description": "Create deep copies (clones) of your objects",
  4002. "keywords": [
  4003. "clone",
  4004. "copy",
  4005. "duplicate",
  4006. "object",
  4007. "object graph"
  4008. ],
  4009. "time": "2020-01-17T21:11:47+00:00"
  4010. },
  4011. {
  4012. "name": "nunomaduro/collision",
  4013. "version": "v4.1.3",
  4014. "source": {
  4015. "type": "git",
  4016. "url": "https://github.com/nunomaduro/collision.git",
  4017. "reference": "a430bce33d1ad07f756ea6cae9afce9ef8670b42"
  4018. },
  4019. "dist": {
  4020. "type": "zip",
  4021. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/a430bce33d1ad07f756ea6cae9afce9ef8670b42",
  4022. "reference": "a430bce33d1ad07f756ea6cae9afce9ef8670b42",
  4023. "shasum": ""
  4024. },
  4025. "require": {
  4026. "facade/ignition-contracts": "^1.0",
  4027. "filp/whoops": "^2.4",
  4028. "jakub-onderka/php-console-highlighter": "^0.4",
  4029. "php": "^7.2.5",
  4030. "symfony/console": "^5.0"
  4031. },
  4032. "require-dev": {
  4033. "facade/ignition": "^2.0",
  4034. "fideloper/proxy": "^4.2",
  4035. "fruitcake/laravel-cors": "^1.0",
  4036. "laravel/framework": "^7.0",
  4037. "laravel/tinker": "^2.0",
  4038. "nunomaduro/larastan": "^0.5",
  4039. "orchestra/testbench": "^5.0",
  4040. "phpstan/phpstan": "^0.12.3",
  4041. "phpunit/phpunit": "^8.5.1 || ^9.0"
  4042. },
  4043. "type": "library",
  4044. "extra": {
  4045. "laravel": {
  4046. "providers": [
  4047. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  4048. ]
  4049. }
  4050. },
  4051. "autoload": {
  4052. "psr-4": {
  4053. "NunoMaduro\\Collision\\": "src/"
  4054. }
  4055. },
  4056. "notification-url": "https://packagist.org/downloads/",
  4057. "license": [
  4058. "MIT"
  4059. ],
  4060. "authors": [
  4061. {
  4062. "name": "Nuno Maduro",
  4063. "email": "enunomaduro@gmail.com"
  4064. }
  4065. ],
  4066. "description": "Cli error handling for console/command-line PHP applications.",
  4067. "keywords": [
  4068. "artisan",
  4069. "cli",
  4070. "command-line",
  4071. "console",
  4072. "error",
  4073. "handling",
  4074. "laravel",
  4075. "laravel-zero",
  4076. "php",
  4077. "symfony"
  4078. ],
  4079. "time": "2020-03-07T12:46:00+00:00"
  4080. },
  4081. {
  4082. "name": "phar-io/manifest",
  4083. "version": "1.0.3",
  4084. "source": {
  4085. "type": "git",
  4086. "url": "https://github.com/phar-io/manifest.git",
  4087. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  4088. },
  4089. "dist": {
  4090. "type": "zip",
  4091. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  4092. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  4093. "shasum": ""
  4094. },
  4095. "require": {
  4096. "ext-dom": "*",
  4097. "ext-phar": "*",
  4098. "phar-io/version": "^2.0",
  4099. "php": "^5.6 || ^7.0"
  4100. },
  4101. "type": "library",
  4102. "extra": {
  4103. "branch-alias": {
  4104. "dev-master": "1.0.x-dev"
  4105. }
  4106. },
  4107. "autoload": {
  4108. "classmap": [
  4109. "src/"
  4110. ]
  4111. },
  4112. "notification-url": "https://packagist.org/downloads/",
  4113. "license": [
  4114. "BSD-3-Clause"
  4115. ],
  4116. "authors": [
  4117. {
  4118. "name": "Arne Blankerts",
  4119. "email": "arne@blankerts.de",
  4120. "role": "Developer"
  4121. },
  4122. {
  4123. "name": "Sebastian Heuer",
  4124. "email": "sebastian@phpeople.de",
  4125. "role": "Developer"
  4126. },
  4127. {
  4128. "name": "Sebastian Bergmann",
  4129. "email": "sebastian@phpunit.de",
  4130. "role": "Developer"
  4131. }
  4132. ],
  4133. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4134. "time": "2018-07-08T19:23:20+00:00"
  4135. },
  4136. {
  4137. "name": "phar-io/version",
  4138. "version": "2.0.1",
  4139. "source": {
  4140. "type": "git",
  4141. "url": "https://github.com/phar-io/version.git",
  4142. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  4143. },
  4144. "dist": {
  4145. "type": "zip",
  4146. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4147. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4148. "shasum": ""
  4149. },
  4150. "require": {
  4151. "php": "^5.6 || ^7.0"
  4152. },
  4153. "type": "library",
  4154. "autoload": {
  4155. "classmap": [
  4156. "src/"
  4157. ]
  4158. },
  4159. "notification-url": "https://packagist.org/downloads/",
  4160. "license": [
  4161. "BSD-3-Clause"
  4162. ],
  4163. "authors": [
  4164. {
  4165. "name": "Arne Blankerts",
  4166. "email": "arne@blankerts.de",
  4167. "role": "Developer"
  4168. },
  4169. {
  4170. "name": "Sebastian Heuer",
  4171. "email": "sebastian@phpeople.de",
  4172. "role": "Developer"
  4173. },
  4174. {
  4175. "name": "Sebastian Bergmann",
  4176. "email": "sebastian@phpunit.de",
  4177. "role": "Developer"
  4178. }
  4179. ],
  4180. "description": "Library for handling version information and constraints",
  4181. "time": "2018-07-08T19:19:57+00:00"
  4182. },
  4183. {
  4184. "name": "phpdocumentor/reflection-common",
  4185. "version": "2.0.0",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4189. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  4194. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  4195. "shasum": ""
  4196. },
  4197. "require": {
  4198. "php": ">=7.1"
  4199. },
  4200. "require-dev": {
  4201. "phpunit/phpunit": "~6"
  4202. },
  4203. "type": "library",
  4204. "extra": {
  4205. "branch-alias": {
  4206. "dev-master": "2.x-dev"
  4207. }
  4208. },
  4209. "autoload": {
  4210. "psr-4": {
  4211. "phpDocumentor\\Reflection\\": "src/"
  4212. }
  4213. },
  4214. "notification-url": "https://packagist.org/downloads/",
  4215. "license": [
  4216. "MIT"
  4217. ],
  4218. "authors": [
  4219. {
  4220. "name": "Jaap van Otterdijk",
  4221. "email": "opensource@ijaap.nl"
  4222. }
  4223. ],
  4224. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4225. "homepage": "http://www.phpdoc.org",
  4226. "keywords": [
  4227. "FQSEN",
  4228. "phpDocumentor",
  4229. "phpdoc",
  4230. "reflection",
  4231. "static analysis"
  4232. ],
  4233. "time": "2018-08-07T13:53:10+00:00"
  4234. },
  4235. {
  4236. "name": "phpdocumentor/reflection-docblock",
  4237. "version": "5.1.0",
  4238. "source": {
  4239. "type": "git",
  4240. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4241. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e"
  4242. },
  4243. "dist": {
  4244. "type": "zip",
  4245. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  4246. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  4247. "shasum": ""
  4248. },
  4249. "require": {
  4250. "ext-filter": "^7.1",
  4251. "php": "^7.2",
  4252. "phpdocumentor/reflection-common": "^2.0",
  4253. "phpdocumentor/type-resolver": "^1.0",
  4254. "webmozart/assert": "^1"
  4255. },
  4256. "require-dev": {
  4257. "doctrine/instantiator": "^1",
  4258. "mockery/mockery": "^1"
  4259. },
  4260. "type": "library",
  4261. "extra": {
  4262. "branch-alias": {
  4263. "dev-master": "5.x-dev"
  4264. }
  4265. },
  4266. "autoload": {
  4267. "psr-4": {
  4268. "phpDocumentor\\Reflection\\": "src"
  4269. }
  4270. },
  4271. "notification-url": "https://packagist.org/downloads/",
  4272. "license": [
  4273. "MIT"
  4274. ],
  4275. "authors": [
  4276. {
  4277. "name": "Mike van Riel",
  4278. "email": "me@mikevanriel.com"
  4279. },
  4280. {
  4281. "name": "Jaap van Otterdijk",
  4282. "email": "account@ijaap.nl"
  4283. }
  4284. ],
  4285. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4286. "time": "2020-02-22T12:28:44+00:00"
  4287. },
  4288. {
  4289. "name": "phpdocumentor/type-resolver",
  4290. "version": "1.1.0",
  4291. "source": {
  4292. "type": "git",
  4293. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4294. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95"
  4295. },
  4296. "dist": {
  4297. "type": "zip",
  4298. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95",
  4299. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95",
  4300. "shasum": ""
  4301. },
  4302. "require": {
  4303. "php": "^7.2",
  4304. "phpdocumentor/reflection-common": "^2.0"
  4305. },
  4306. "require-dev": {
  4307. "ext-tokenizer": "^7.2",
  4308. "mockery/mockery": "~1"
  4309. },
  4310. "type": "library",
  4311. "extra": {
  4312. "branch-alias": {
  4313. "dev-master": "1.x-dev"
  4314. }
  4315. },
  4316. "autoload": {
  4317. "psr-4": {
  4318. "phpDocumentor\\Reflection\\": "src"
  4319. }
  4320. },
  4321. "notification-url": "https://packagist.org/downloads/",
  4322. "license": [
  4323. "MIT"
  4324. ],
  4325. "authors": [
  4326. {
  4327. "name": "Mike van Riel",
  4328. "email": "me@mikevanriel.com"
  4329. }
  4330. ],
  4331. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4332. "time": "2020-02-18T18:59:58+00:00"
  4333. },
  4334. {
  4335. "name": "phpspec/prophecy",
  4336. "version": "v1.10.3",
  4337. "source": {
  4338. "type": "git",
  4339. "url": "https://github.com/phpspec/prophecy.git",
  4340. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  4341. },
  4342. "dist": {
  4343. "type": "zip",
  4344. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  4345. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  4346. "shasum": ""
  4347. },
  4348. "require": {
  4349. "doctrine/instantiator": "^1.0.2",
  4350. "php": "^5.3|^7.0",
  4351. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  4352. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  4353. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  4354. },
  4355. "require-dev": {
  4356. "phpspec/phpspec": "^2.5 || ^3.2",
  4357. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  4358. },
  4359. "type": "library",
  4360. "extra": {
  4361. "branch-alias": {
  4362. "dev-master": "1.10.x-dev"
  4363. }
  4364. },
  4365. "autoload": {
  4366. "psr-4": {
  4367. "Prophecy\\": "src/Prophecy"
  4368. }
  4369. },
  4370. "notification-url": "https://packagist.org/downloads/",
  4371. "license": [
  4372. "MIT"
  4373. ],
  4374. "authors": [
  4375. {
  4376. "name": "Konstantin Kudryashov",
  4377. "email": "ever.zet@gmail.com",
  4378. "homepage": "http://everzet.com"
  4379. },
  4380. {
  4381. "name": "Marcello Duarte",
  4382. "email": "marcello.duarte@gmail.com"
  4383. }
  4384. ],
  4385. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4386. "homepage": "https://github.com/phpspec/prophecy",
  4387. "keywords": [
  4388. "Double",
  4389. "Dummy",
  4390. "fake",
  4391. "mock",
  4392. "spy",
  4393. "stub"
  4394. ],
  4395. "time": "2020-03-05T15:02:03+00:00"
  4396. },
  4397. {
  4398. "name": "phpunit/php-code-coverage",
  4399. "version": "7.0.10",
  4400. "source": {
  4401. "type": "git",
  4402. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4403. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  4404. },
  4405. "dist": {
  4406. "type": "zip",
  4407. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  4408. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  4409. "shasum": ""
  4410. },
  4411. "require": {
  4412. "ext-dom": "*",
  4413. "ext-xmlwriter": "*",
  4414. "php": "^7.2",
  4415. "phpunit/php-file-iterator": "^2.0.2",
  4416. "phpunit/php-text-template": "^1.2.1",
  4417. "phpunit/php-token-stream": "^3.1.1",
  4418. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  4419. "sebastian/environment": "^4.2.2",
  4420. "sebastian/version": "^2.0.1",
  4421. "theseer/tokenizer": "^1.1.3"
  4422. },
  4423. "require-dev": {
  4424. "phpunit/phpunit": "^8.2.2"
  4425. },
  4426. "suggest": {
  4427. "ext-xdebug": "^2.7.2"
  4428. },
  4429. "type": "library",
  4430. "extra": {
  4431. "branch-alias": {
  4432. "dev-master": "7.0-dev"
  4433. }
  4434. },
  4435. "autoload": {
  4436. "classmap": [
  4437. "src/"
  4438. ]
  4439. },
  4440. "notification-url": "https://packagist.org/downloads/",
  4441. "license": [
  4442. "BSD-3-Clause"
  4443. ],
  4444. "authors": [
  4445. {
  4446. "name": "Sebastian Bergmann",
  4447. "email": "sebastian@phpunit.de",
  4448. "role": "lead"
  4449. }
  4450. ],
  4451. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4452. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4453. "keywords": [
  4454. "coverage",
  4455. "testing",
  4456. "xunit"
  4457. ],
  4458. "time": "2019-11-20T13:55:58+00:00"
  4459. },
  4460. {
  4461. "name": "phpunit/php-file-iterator",
  4462. "version": "2.0.2",
  4463. "source": {
  4464. "type": "git",
  4465. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4466. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  4467. },
  4468. "dist": {
  4469. "type": "zip",
  4470. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  4471. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  4472. "shasum": ""
  4473. },
  4474. "require": {
  4475. "php": "^7.1"
  4476. },
  4477. "require-dev": {
  4478. "phpunit/phpunit": "^7.1"
  4479. },
  4480. "type": "library",
  4481. "extra": {
  4482. "branch-alias": {
  4483. "dev-master": "2.0.x-dev"
  4484. }
  4485. },
  4486. "autoload": {
  4487. "classmap": [
  4488. "src/"
  4489. ]
  4490. },
  4491. "notification-url": "https://packagist.org/downloads/",
  4492. "license": [
  4493. "BSD-3-Clause"
  4494. ],
  4495. "authors": [
  4496. {
  4497. "name": "Sebastian Bergmann",
  4498. "email": "sebastian@phpunit.de",
  4499. "role": "lead"
  4500. }
  4501. ],
  4502. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4503. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4504. "keywords": [
  4505. "filesystem",
  4506. "iterator"
  4507. ],
  4508. "time": "2018-09-13T20:33:42+00:00"
  4509. },
  4510. {
  4511. "name": "phpunit/php-text-template",
  4512. "version": "1.2.1",
  4513. "source": {
  4514. "type": "git",
  4515. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4516. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4517. },
  4518. "dist": {
  4519. "type": "zip",
  4520. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4521. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4522. "shasum": ""
  4523. },
  4524. "require": {
  4525. "php": ">=5.3.3"
  4526. },
  4527. "type": "library",
  4528. "autoload": {
  4529. "classmap": [
  4530. "src/"
  4531. ]
  4532. },
  4533. "notification-url": "https://packagist.org/downloads/",
  4534. "license": [
  4535. "BSD-3-Clause"
  4536. ],
  4537. "authors": [
  4538. {
  4539. "name": "Sebastian Bergmann",
  4540. "email": "sebastian@phpunit.de",
  4541. "role": "lead"
  4542. }
  4543. ],
  4544. "description": "Simple template engine.",
  4545. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4546. "keywords": [
  4547. "template"
  4548. ],
  4549. "time": "2015-06-21T13:50:34+00:00"
  4550. },
  4551. {
  4552. "name": "phpunit/php-timer",
  4553. "version": "2.1.2",
  4554. "source": {
  4555. "type": "git",
  4556. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4557. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  4558. },
  4559. "dist": {
  4560. "type": "zip",
  4561. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  4562. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  4563. "shasum": ""
  4564. },
  4565. "require": {
  4566. "php": "^7.1"
  4567. },
  4568. "require-dev": {
  4569. "phpunit/phpunit": "^7.0"
  4570. },
  4571. "type": "library",
  4572. "extra": {
  4573. "branch-alias": {
  4574. "dev-master": "2.1-dev"
  4575. }
  4576. },
  4577. "autoload": {
  4578. "classmap": [
  4579. "src/"
  4580. ]
  4581. },
  4582. "notification-url": "https://packagist.org/downloads/",
  4583. "license": [
  4584. "BSD-3-Clause"
  4585. ],
  4586. "authors": [
  4587. {
  4588. "name": "Sebastian Bergmann",
  4589. "email": "sebastian@phpunit.de",
  4590. "role": "lead"
  4591. }
  4592. ],
  4593. "description": "Utility class for timing",
  4594. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4595. "keywords": [
  4596. "timer"
  4597. ],
  4598. "time": "2019-06-07T04:22:29+00:00"
  4599. },
  4600. {
  4601. "name": "phpunit/php-token-stream",
  4602. "version": "3.1.1",
  4603. "source": {
  4604. "type": "git",
  4605. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4606. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  4607. },
  4608. "dist": {
  4609. "type": "zip",
  4610. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  4611. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  4612. "shasum": ""
  4613. },
  4614. "require": {
  4615. "ext-tokenizer": "*",
  4616. "php": "^7.1"
  4617. },
  4618. "require-dev": {
  4619. "phpunit/phpunit": "^7.0"
  4620. },
  4621. "type": "library",
  4622. "extra": {
  4623. "branch-alias": {
  4624. "dev-master": "3.1-dev"
  4625. }
  4626. },
  4627. "autoload": {
  4628. "classmap": [
  4629. "src/"
  4630. ]
  4631. },
  4632. "notification-url": "https://packagist.org/downloads/",
  4633. "license": [
  4634. "BSD-3-Clause"
  4635. ],
  4636. "authors": [
  4637. {
  4638. "name": "Sebastian Bergmann",
  4639. "email": "sebastian@phpunit.de"
  4640. }
  4641. ],
  4642. "description": "Wrapper around PHP's tokenizer extension.",
  4643. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4644. "keywords": [
  4645. "tokenizer"
  4646. ],
  4647. "time": "2019-09-17T06:23:10+00:00"
  4648. },
  4649. {
  4650. "name": "phpunit/phpunit",
  4651. "version": "8.5.2",
  4652. "source": {
  4653. "type": "git",
  4654. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4655. "reference": "018b6ac3c8ab20916db85fa91bf6465acb64d1e0"
  4656. },
  4657. "dist": {
  4658. "type": "zip",
  4659. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/018b6ac3c8ab20916db85fa91bf6465acb64d1e0",
  4660. "reference": "018b6ac3c8ab20916db85fa91bf6465acb64d1e0",
  4661. "shasum": ""
  4662. },
  4663. "require": {
  4664. "doctrine/instantiator": "^1.2.0",
  4665. "ext-dom": "*",
  4666. "ext-json": "*",
  4667. "ext-libxml": "*",
  4668. "ext-mbstring": "*",
  4669. "ext-xml": "*",
  4670. "ext-xmlwriter": "*",
  4671. "myclabs/deep-copy": "^1.9.1",
  4672. "phar-io/manifest": "^1.0.3",
  4673. "phar-io/version": "^2.0.1",
  4674. "php": "^7.2",
  4675. "phpspec/prophecy": "^1.8.1",
  4676. "phpunit/php-code-coverage": "^7.0.7",
  4677. "phpunit/php-file-iterator": "^2.0.2",
  4678. "phpunit/php-text-template": "^1.2.1",
  4679. "phpunit/php-timer": "^2.1.2",
  4680. "sebastian/comparator": "^3.0.2",
  4681. "sebastian/diff": "^3.0.2",
  4682. "sebastian/environment": "^4.2.2",
  4683. "sebastian/exporter": "^3.1.1",
  4684. "sebastian/global-state": "^3.0.0",
  4685. "sebastian/object-enumerator": "^3.0.3",
  4686. "sebastian/resource-operations": "^2.0.1",
  4687. "sebastian/type": "^1.1.3",
  4688. "sebastian/version": "^2.0.1"
  4689. },
  4690. "require-dev": {
  4691. "ext-pdo": "*"
  4692. },
  4693. "suggest": {
  4694. "ext-soap": "*",
  4695. "ext-xdebug": "*",
  4696. "phpunit/php-invoker": "^2.0.0"
  4697. },
  4698. "bin": [
  4699. "phpunit"
  4700. ],
  4701. "type": "library",
  4702. "extra": {
  4703. "branch-alias": {
  4704. "dev-master": "8.5-dev"
  4705. }
  4706. },
  4707. "autoload": {
  4708. "classmap": [
  4709. "src/"
  4710. ]
  4711. },
  4712. "notification-url": "https://packagist.org/downloads/",
  4713. "license": [
  4714. "BSD-3-Clause"
  4715. ],
  4716. "authors": [
  4717. {
  4718. "name": "Sebastian Bergmann",
  4719. "email": "sebastian@phpunit.de",
  4720. "role": "lead"
  4721. }
  4722. ],
  4723. "description": "The PHP Unit Testing framework.",
  4724. "homepage": "https://phpunit.de/",
  4725. "keywords": [
  4726. "phpunit",
  4727. "testing",
  4728. "xunit"
  4729. ],
  4730. "time": "2020-01-08T08:49:49+00:00"
  4731. },
  4732. {
  4733. "name": "scrivo/highlight.php",
  4734. "version": "v9.18.1.1",
  4735. "source": {
  4736. "type": "git",
  4737. "url": "https://github.com/scrivo/highlight.php.git",
  4738. "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558"
  4739. },
  4740. "dist": {
  4741. "type": "zip",
  4742. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/52fc21c99fd888e33aed4879e55a3646f8d40558",
  4743. "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558",
  4744. "shasum": ""
  4745. },
  4746. "require": {
  4747. "ext-json": "*",
  4748. "ext-mbstring": "*",
  4749. "php": ">=5.4"
  4750. },
  4751. "require-dev": {
  4752. "phpunit/phpunit": "^4.8|^5.7",
  4753. "sabberworm/php-css-parser": "^8.3",
  4754. "symfony/finder": "^2.8|^3.4",
  4755. "symfony/var-dumper": "^2.8|^3.4"
  4756. },
  4757. "suggest": {
  4758. "ext-dom": "Needed to make use of the features in the utilities namespace"
  4759. },
  4760. "type": "library",
  4761. "autoload": {
  4762. "psr-0": {
  4763. "Highlight\\": "",
  4764. "HighlightUtilities\\": ""
  4765. },
  4766. "files": [
  4767. "HighlightUtilities/functions.php"
  4768. ]
  4769. },
  4770. "notification-url": "https://packagist.org/downloads/",
  4771. "license": [
  4772. "BSD-3-Clause"
  4773. ],
  4774. "authors": [
  4775. {
  4776. "name": "Geert Bergman",
  4777. "homepage": "http://www.scrivo.org/",
  4778. "role": "Project Author"
  4779. },
  4780. {
  4781. "name": "Vladimir Jimenez",
  4782. "homepage": "https://allejo.io",
  4783. "role": "Maintainer"
  4784. },
  4785. {
  4786. "name": "Martin Folkers",
  4787. "homepage": "https://twobrain.io",
  4788. "role": "Contributor"
  4789. }
  4790. ],
  4791. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  4792. "keywords": [
  4793. "code",
  4794. "highlight",
  4795. "highlight.js",
  4796. "highlight.php",
  4797. "syntax"
  4798. ],
  4799. "time": "2020-03-02T05:59:21+00:00"
  4800. },
  4801. {
  4802. "name": "sebastian/code-unit-reverse-lookup",
  4803. "version": "1.0.1",
  4804. "source": {
  4805. "type": "git",
  4806. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4807. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  4808. },
  4809. "dist": {
  4810. "type": "zip",
  4811. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4812. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4813. "shasum": ""
  4814. },
  4815. "require": {
  4816. "php": "^5.6 || ^7.0"
  4817. },
  4818. "require-dev": {
  4819. "phpunit/phpunit": "^5.7 || ^6.0"
  4820. },
  4821. "type": "library",
  4822. "extra": {
  4823. "branch-alias": {
  4824. "dev-master": "1.0.x-dev"
  4825. }
  4826. },
  4827. "autoload": {
  4828. "classmap": [
  4829. "src/"
  4830. ]
  4831. },
  4832. "notification-url": "https://packagist.org/downloads/",
  4833. "license": [
  4834. "BSD-3-Clause"
  4835. ],
  4836. "authors": [
  4837. {
  4838. "name": "Sebastian Bergmann",
  4839. "email": "sebastian@phpunit.de"
  4840. }
  4841. ],
  4842. "description": "Looks up which function or method a line of code belongs to",
  4843. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4844. "time": "2017-03-04T06:30:41+00:00"
  4845. },
  4846. {
  4847. "name": "sebastian/comparator",
  4848. "version": "3.0.2",
  4849. "source": {
  4850. "type": "git",
  4851. "url": "https://github.com/sebastianbergmann/comparator.git",
  4852. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  4853. },
  4854. "dist": {
  4855. "type": "zip",
  4856. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  4857. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  4858. "shasum": ""
  4859. },
  4860. "require": {
  4861. "php": "^7.1",
  4862. "sebastian/diff": "^3.0",
  4863. "sebastian/exporter": "^3.1"
  4864. },
  4865. "require-dev": {
  4866. "phpunit/phpunit": "^7.1"
  4867. },
  4868. "type": "library",
  4869. "extra": {
  4870. "branch-alias": {
  4871. "dev-master": "3.0-dev"
  4872. }
  4873. },
  4874. "autoload": {
  4875. "classmap": [
  4876. "src/"
  4877. ]
  4878. },
  4879. "notification-url": "https://packagist.org/downloads/",
  4880. "license": [
  4881. "BSD-3-Clause"
  4882. ],
  4883. "authors": [
  4884. {
  4885. "name": "Jeff Welch",
  4886. "email": "whatthejeff@gmail.com"
  4887. },
  4888. {
  4889. "name": "Volker Dusch",
  4890. "email": "github@wallbash.com"
  4891. },
  4892. {
  4893. "name": "Bernhard Schussek",
  4894. "email": "bschussek@2bepublished.at"
  4895. },
  4896. {
  4897. "name": "Sebastian Bergmann",
  4898. "email": "sebastian@phpunit.de"
  4899. }
  4900. ],
  4901. "description": "Provides the functionality to compare PHP values for equality",
  4902. "homepage": "https://github.com/sebastianbergmann/comparator",
  4903. "keywords": [
  4904. "comparator",
  4905. "compare",
  4906. "equality"
  4907. ],
  4908. "time": "2018-07-12T15:12:46+00:00"
  4909. },
  4910. {
  4911. "name": "sebastian/diff",
  4912. "version": "3.0.2",
  4913. "source": {
  4914. "type": "git",
  4915. "url": "https://github.com/sebastianbergmann/diff.git",
  4916. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  4917. },
  4918. "dist": {
  4919. "type": "zip",
  4920. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  4921. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  4922. "shasum": ""
  4923. },
  4924. "require": {
  4925. "php": "^7.1"
  4926. },
  4927. "require-dev": {
  4928. "phpunit/phpunit": "^7.5 || ^8.0",
  4929. "symfony/process": "^2 || ^3.3 || ^4"
  4930. },
  4931. "type": "library",
  4932. "extra": {
  4933. "branch-alias": {
  4934. "dev-master": "3.0-dev"
  4935. }
  4936. },
  4937. "autoload": {
  4938. "classmap": [
  4939. "src/"
  4940. ]
  4941. },
  4942. "notification-url": "https://packagist.org/downloads/",
  4943. "license": [
  4944. "BSD-3-Clause"
  4945. ],
  4946. "authors": [
  4947. {
  4948. "name": "Kore Nordmann",
  4949. "email": "mail@kore-nordmann.de"
  4950. },
  4951. {
  4952. "name": "Sebastian Bergmann",
  4953. "email": "sebastian@phpunit.de"
  4954. }
  4955. ],
  4956. "description": "Diff implementation",
  4957. "homepage": "https://github.com/sebastianbergmann/diff",
  4958. "keywords": [
  4959. "diff",
  4960. "udiff",
  4961. "unidiff",
  4962. "unified diff"
  4963. ],
  4964. "time": "2019-02-04T06:01:07+00:00"
  4965. },
  4966. {
  4967. "name": "sebastian/environment",
  4968. "version": "4.2.3",
  4969. "source": {
  4970. "type": "git",
  4971. "url": "https://github.com/sebastianbergmann/environment.git",
  4972. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  4973. },
  4974. "dist": {
  4975. "type": "zip",
  4976. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  4977. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  4978. "shasum": ""
  4979. },
  4980. "require": {
  4981. "php": "^7.1"
  4982. },
  4983. "require-dev": {
  4984. "phpunit/phpunit": "^7.5"
  4985. },
  4986. "suggest": {
  4987. "ext-posix": "*"
  4988. },
  4989. "type": "library",
  4990. "extra": {
  4991. "branch-alias": {
  4992. "dev-master": "4.2-dev"
  4993. }
  4994. },
  4995. "autoload": {
  4996. "classmap": [
  4997. "src/"
  4998. ]
  4999. },
  5000. "notification-url": "https://packagist.org/downloads/",
  5001. "license": [
  5002. "BSD-3-Clause"
  5003. ],
  5004. "authors": [
  5005. {
  5006. "name": "Sebastian Bergmann",
  5007. "email": "sebastian@phpunit.de"
  5008. }
  5009. ],
  5010. "description": "Provides functionality to handle HHVM/PHP environments",
  5011. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5012. "keywords": [
  5013. "Xdebug",
  5014. "environment",
  5015. "hhvm"
  5016. ],
  5017. "time": "2019-11-20T08:46:58+00:00"
  5018. },
  5019. {
  5020. "name": "sebastian/exporter",
  5021. "version": "3.1.2",
  5022. "source": {
  5023. "type": "git",
  5024. "url": "https://github.com/sebastianbergmann/exporter.git",
  5025. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  5026. },
  5027. "dist": {
  5028. "type": "zip",
  5029. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  5030. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  5031. "shasum": ""
  5032. },
  5033. "require": {
  5034. "php": "^7.0",
  5035. "sebastian/recursion-context": "^3.0"
  5036. },
  5037. "require-dev": {
  5038. "ext-mbstring": "*",
  5039. "phpunit/phpunit": "^6.0"
  5040. },
  5041. "type": "library",
  5042. "extra": {
  5043. "branch-alias": {
  5044. "dev-master": "3.1.x-dev"
  5045. }
  5046. },
  5047. "autoload": {
  5048. "classmap": [
  5049. "src/"
  5050. ]
  5051. },
  5052. "notification-url": "https://packagist.org/downloads/",
  5053. "license": [
  5054. "BSD-3-Clause"
  5055. ],
  5056. "authors": [
  5057. {
  5058. "name": "Sebastian Bergmann",
  5059. "email": "sebastian@phpunit.de"
  5060. },
  5061. {
  5062. "name": "Jeff Welch",
  5063. "email": "whatthejeff@gmail.com"
  5064. },
  5065. {
  5066. "name": "Volker Dusch",
  5067. "email": "github@wallbash.com"
  5068. },
  5069. {
  5070. "name": "Adam Harvey",
  5071. "email": "aharvey@php.net"
  5072. },
  5073. {
  5074. "name": "Bernhard Schussek",
  5075. "email": "bschussek@gmail.com"
  5076. }
  5077. ],
  5078. "description": "Provides the functionality to export PHP variables for visualization",
  5079. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5080. "keywords": [
  5081. "export",
  5082. "exporter"
  5083. ],
  5084. "time": "2019-09-14T09:02:43+00:00"
  5085. },
  5086. {
  5087. "name": "sebastian/global-state",
  5088. "version": "3.0.0",
  5089. "source": {
  5090. "type": "git",
  5091. "url": "https://github.com/sebastianbergmann/global-state.git",
  5092. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  5093. },
  5094. "dist": {
  5095. "type": "zip",
  5096. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  5097. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  5098. "shasum": ""
  5099. },
  5100. "require": {
  5101. "php": "^7.2",
  5102. "sebastian/object-reflector": "^1.1.1",
  5103. "sebastian/recursion-context": "^3.0"
  5104. },
  5105. "require-dev": {
  5106. "ext-dom": "*",
  5107. "phpunit/phpunit": "^8.0"
  5108. },
  5109. "suggest": {
  5110. "ext-uopz": "*"
  5111. },
  5112. "type": "library",
  5113. "extra": {
  5114. "branch-alias": {
  5115. "dev-master": "3.0-dev"
  5116. }
  5117. },
  5118. "autoload": {
  5119. "classmap": [
  5120. "src/"
  5121. ]
  5122. },
  5123. "notification-url": "https://packagist.org/downloads/",
  5124. "license": [
  5125. "BSD-3-Clause"
  5126. ],
  5127. "authors": [
  5128. {
  5129. "name": "Sebastian Bergmann",
  5130. "email": "sebastian@phpunit.de"
  5131. }
  5132. ],
  5133. "description": "Snapshotting of global state",
  5134. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5135. "keywords": [
  5136. "global state"
  5137. ],
  5138. "time": "2019-02-01T05:30:01+00:00"
  5139. },
  5140. {
  5141. "name": "sebastian/object-enumerator",
  5142. "version": "3.0.3",
  5143. "source": {
  5144. "type": "git",
  5145. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5146. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  5147. },
  5148. "dist": {
  5149. "type": "zip",
  5150. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5151. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5152. "shasum": ""
  5153. },
  5154. "require": {
  5155. "php": "^7.0",
  5156. "sebastian/object-reflector": "^1.1.1",
  5157. "sebastian/recursion-context": "^3.0"
  5158. },
  5159. "require-dev": {
  5160. "phpunit/phpunit": "^6.0"
  5161. },
  5162. "type": "library",
  5163. "extra": {
  5164. "branch-alias": {
  5165. "dev-master": "3.0.x-dev"
  5166. }
  5167. },
  5168. "autoload": {
  5169. "classmap": [
  5170. "src/"
  5171. ]
  5172. },
  5173. "notification-url": "https://packagist.org/downloads/",
  5174. "license": [
  5175. "BSD-3-Clause"
  5176. ],
  5177. "authors": [
  5178. {
  5179. "name": "Sebastian Bergmann",
  5180. "email": "sebastian@phpunit.de"
  5181. }
  5182. ],
  5183. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5184. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5185. "time": "2017-08-03T12:35:26+00:00"
  5186. },
  5187. {
  5188. "name": "sebastian/object-reflector",
  5189. "version": "1.1.1",
  5190. "source": {
  5191. "type": "git",
  5192. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5193. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  5194. },
  5195. "dist": {
  5196. "type": "zip",
  5197. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  5198. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  5199. "shasum": ""
  5200. },
  5201. "require": {
  5202. "php": "^7.0"
  5203. },
  5204. "require-dev": {
  5205. "phpunit/phpunit": "^6.0"
  5206. },
  5207. "type": "library",
  5208. "extra": {
  5209. "branch-alias": {
  5210. "dev-master": "1.1-dev"
  5211. }
  5212. },
  5213. "autoload": {
  5214. "classmap": [
  5215. "src/"
  5216. ]
  5217. },
  5218. "notification-url": "https://packagist.org/downloads/",
  5219. "license": [
  5220. "BSD-3-Clause"
  5221. ],
  5222. "authors": [
  5223. {
  5224. "name": "Sebastian Bergmann",
  5225. "email": "sebastian@phpunit.de"
  5226. }
  5227. ],
  5228. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5229. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5230. "time": "2017-03-29T09:07:27+00:00"
  5231. },
  5232. {
  5233. "name": "sebastian/recursion-context",
  5234. "version": "3.0.0",
  5235. "source": {
  5236. "type": "git",
  5237. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5238. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  5239. },
  5240. "dist": {
  5241. "type": "zip",
  5242. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5243. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5244. "shasum": ""
  5245. },
  5246. "require": {
  5247. "php": "^7.0"
  5248. },
  5249. "require-dev": {
  5250. "phpunit/phpunit": "^6.0"
  5251. },
  5252. "type": "library",
  5253. "extra": {
  5254. "branch-alias": {
  5255. "dev-master": "3.0.x-dev"
  5256. }
  5257. },
  5258. "autoload": {
  5259. "classmap": [
  5260. "src/"
  5261. ]
  5262. },
  5263. "notification-url": "https://packagist.org/downloads/",
  5264. "license": [
  5265. "BSD-3-Clause"
  5266. ],
  5267. "authors": [
  5268. {
  5269. "name": "Jeff Welch",
  5270. "email": "whatthejeff@gmail.com"
  5271. },
  5272. {
  5273. "name": "Sebastian Bergmann",
  5274. "email": "sebastian@phpunit.de"
  5275. },
  5276. {
  5277. "name": "Adam Harvey",
  5278. "email": "aharvey@php.net"
  5279. }
  5280. ],
  5281. "description": "Provides functionality to recursively process PHP variables",
  5282. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5283. "time": "2017-03-03T06:23:57+00:00"
  5284. },
  5285. {
  5286. "name": "sebastian/resource-operations",
  5287. "version": "2.0.1",
  5288. "source": {
  5289. "type": "git",
  5290. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5291. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  5292. },
  5293. "dist": {
  5294. "type": "zip",
  5295. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  5296. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  5297. "shasum": ""
  5298. },
  5299. "require": {
  5300. "php": "^7.1"
  5301. },
  5302. "type": "library",
  5303. "extra": {
  5304. "branch-alias": {
  5305. "dev-master": "2.0-dev"
  5306. }
  5307. },
  5308. "autoload": {
  5309. "classmap": [
  5310. "src/"
  5311. ]
  5312. },
  5313. "notification-url": "https://packagist.org/downloads/",
  5314. "license": [
  5315. "BSD-3-Clause"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "Sebastian Bergmann",
  5320. "email": "sebastian@phpunit.de"
  5321. }
  5322. ],
  5323. "description": "Provides a list of PHP built-in functions that operate on resources",
  5324. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5325. "time": "2018-10-04T04:07:39+00:00"
  5326. },
  5327. {
  5328. "name": "sebastian/type",
  5329. "version": "1.1.3",
  5330. "source": {
  5331. "type": "git",
  5332. "url": "https://github.com/sebastianbergmann/type.git",
  5333. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  5334. },
  5335. "dist": {
  5336. "type": "zip",
  5337. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  5338. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  5339. "shasum": ""
  5340. },
  5341. "require": {
  5342. "php": "^7.2"
  5343. },
  5344. "require-dev": {
  5345. "phpunit/phpunit": "^8.2"
  5346. },
  5347. "type": "library",
  5348. "extra": {
  5349. "branch-alias": {
  5350. "dev-master": "1.1-dev"
  5351. }
  5352. },
  5353. "autoload": {
  5354. "classmap": [
  5355. "src/"
  5356. ]
  5357. },
  5358. "notification-url": "https://packagist.org/downloads/",
  5359. "license": [
  5360. "BSD-3-Clause"
  5361. ],
  5362. "authors": [
  5363. {
  5364. "name": "Sebastian Bergmann",
  5365. "email": "sebastian@phpunit.de",
  5366. "role": "lead"
  5367. }
  5368. ],
  5369. "description": "Collection of value objects that represent the types of the PHP type system",
  5370. "homepage": "https://github.com/sebastianbergmann/type",
  5371. "time": "2019-07-02T08:10:15+00:00"
  5372. },
  5373. {
  5374. "name": "sebastian/version",
  5375. "version": "2.0.1",
  5376. "source": {
  5377. "type": "git",
  5378. "url": "https://github.com/sebastianbergmann/version.git",
  5379. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  5380. },
  5381. "dist": {
  5382. "type": "zip",
  5383. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  5384. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  5385. "shasum": ""
  5386. },
  5387. "require": {
  5388. "php": ">=5.6"
  5389. },
  5390. "type": "library",
  5391. "extra": {
  5392. "branch-alias": {
  5393. "dev-master": "2.0.x-dev"
  5394. }
  5395. },
  5396. "autoload": {
  5397. "classmap": [
  5398. "src/"
  5399. ]
  5400. },
  5401. "notification-url": "https://packagist.org/downloads/",
  5402. "license": [
  5403. "BSD-3-Clause"
  5404. ],
  5405. "authors": [
  5406. {
  5407. "name": "Sebastian Bergmann",
  5408. "email": "sebastian@phpunit.de",
  5409. "role": "lead"
  5410. }
  5411. ],
  5412. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5413. "homepage": "https://github.com/sebastianbergmann/version",
  5414. "time": "2016-10-03T07:35:21+00:00"
  5415. },
  5416. {
  5417. "name": "theseer/tokenizer",
  5418. "version": "1.1.3",
  5419. "source": {
  5420. "type": "git",
  5421. "url": "https://github.com/theseer/tokenizer.git",
  5422. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  5423. },
  5424. "dist": {
  5425. "type": "zip",
  5426. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  5427. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  5428. "shasum": ""
  5429. },
  5430. "require": {
  5431. "ext-dom": "*",
  5432. "ext-tokenizer": "*",
  5433. "ext-xmlwriter": "*",
  5434. "php": "^7.0"
  5435. },
  5436. "type": "library",
  5437. "autoload": {
  5438. "classmap": [
  5439. "src/"
  5440. ]
  5441. },
  5442. "notification-url": "https://packagist.org/downloads/",
  5443. "license": [
  5444. "BSD-3-Clause"
  5445. ],
  5446. "authors": [
  5447. {
  5448. "name": "Arne Blankerts",
  5449. "email": "arne@blankerts.de",
  5450. "role": "Developer"
  5451. }
  5452. ],
  5453. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5454. "time": "2019-06-13T22:48:21+00:00"
  5455. },
  5456. {
  5457. "name": "webmozart/assert",
  5458. "version": "1.7.0",
  5459. "source": {
  5460. "type": "git",
  5461. "url": "https://github.com/webmozart/assert.git",
  5462. "reference": "aed98a490f9a8f78468232db345ab9cf606cf598"
  5463. },
  5464. "dist": {
  5465. "type": "zip",
  5466. "url": "https://api.github.com/repos/webmozart/assert/zipball/aed98a490f9a8f78468232db345ab9cf606cf598",
  5467. "reference": "aed98a490f9a8f78468232db345ab9cf606cf598",
  5468. "shasum": ""
  5469. },
  5470. "require": {
  5471. "php": "^5.3.3 || ^7.0",
  5472. "symfony/polyfill-ctype": "^1.8"
  5473. },
  5474. "conflict": {
  5475. "vimeo/psalm": "<3.6.0"
  5476. },
  5477. "require-dev": {
  5478. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  5479. },
  5480. "type": "library",
  5481. "autoload": {
  5482. "psr-4": {
  5483. "Webmozart\\Assert\\": "src/"
  5484. }
  5485. },
  5486. "notification-url": "https://packagist.org/downloads/",
  5487. "license": [
  5488. "MIT"
  5489. ],
  5490. "authors": [
  5491. {
  5492. "name": "Bernhard Schussek",
  5493. "email": "bschussek@gmail.com"
  5494. }
  5495. ],
  5496. "description": "Assertions to validate method input/output with nice error messages.",
  5497. "keywords": [
  5498. "assert",
  5499. "check",
  5500. "validate"
  5501. ],
  5502. "time": "2020-02-14T12:15:55+00:00"
  5503. }
  5504. ],
  5505. "aliases": [],
  5506. "minimum-stability": "dev",
  5507. "stability-flags": [],
  5508. "prefer-stable": true,
  5509. "prefer-lowest": false,
  5510. "platform": {
  5511. "php": "^7.2.5"
  5512. },
  5513. "platform-dev": []
  5514. }