composer.lock 191 KB

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