composer.lock 205 KB

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