composer.lock 214 KB

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