composer.lock 257 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354
  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": "d7c9f518e63d20424dd17883057f5cb8",
  8. "packages": [
  9. {
  10. "name": "alchemy/binary-driver",
  11. "version": "v2.0.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  15. "reference": "6ccde0e19e81e54da77b08da1a176d43e089f3a3"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/6ccde0e19e81e54da77b08da1a176d43e089f3a3",
  20. "reference": "6ccde0e19e81e54da77b08da1a176d43e089f3a3",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "evenement/evenement": "^2.0|^1.0",
  25. "monolog/monolog": "^1.3",
  26. "php": ">=5.5",
  27. "psr/log": "^1.0",
  28. "symfony/process": "^2.3|^3.0|^4.0"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "^4.0|^5.0"
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "psr-0": {
  36. "Alchemy": "src"
  37. }
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "MIT"
  42. ],
  43. "authors": [
  44. {
  45. "name": "Romain Neutron",
  46. "email": "imprec@gmail.com",
  47. "homepage": "http://www.lickmychip.com/"
  48. },
  49. {
  50. "name": "Phraseanet Team",
  51. "email": "info@alchemy.fr",
  52. "homepage": "http://www.phraseanet.com/"
  53. },
  54. {
  55. "name": "Nicolas Le Goff",
  56. "email": "legoff.n@gmail.com"
  57. },
  58. {
  59. "name": "Jens Hausdorf",
  60. "email": "mail@jens-hausdorf.de",
  61. "homepage": "https://jens-hausdorf.de",
  62. "role": "Maintainer"
  63. }
  64. ],
  65. "description": "A set of tools to build binary drivers",
  66. "keywords": [
  67. "binary",
  68. "driver"
  69. ],
  70. "time": "2018-08-06T10:18:33+00:00"
  71. },
  72. {
  73. "name": "aws/aws-sdk-php",
  74. "version": "3.87.21",
  75. "source": {
  76. "type": "git",
  77. "url": "https://github.com/aws/aws-sdk-php.git",
  78. "reference": "266641679eea15075ea13c088f9737460351f7ab"
  79. },
  80. "dist": {
  81. "type": "zip",
  82. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/266641679eea15075ea13c088f9737460351f7ab",
  83. "reference": "266641679eea15075ea13c088f9737460351f7ab",
  84. "shasum": ""
  85. },
  86. "require": {
  87. "ext-json": "*",
  88. "ext-pcre": "*",
  89. "ext-simplexml": "*",
  90. "guzzlehttp/guzzle": "^5.3.3|^6.2.1",
  91. "guzzlehttp/promises": "~1.0",
  92. "guzzlehttp/psr7": "^1.4.1",
  93. "mtdowling/jmespath.php": "~2.2",
  94. "php": ">=5.5"
  95. },
  96. "require-dev": {
  97. "andrewsville/php-token-reflection": "^1.4",
  98. "aws/aws-php-sns-message-validator": "~1.0",
  99. "behat/behat": "~3.0",
  100. "doctrine/cache": "~1.4",
  101. "ext-dom": "*",
  102. "ext-openssl": "*",
  103. "ext-pcntl": "*",
  104. "ext-sockets": "*",
  105. "nette/neon": "^2.3",
  106. "phpunit/phpunit": "^4.8.35|^5.4.3",
  107. "psr/cache": "^1.0"
  108. },
  109. "suggest": {
  110. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  111. "doctrine/cache": "To use the DoctrineCacheAdapter",
  112. "ext-curl": "To send requests using cURL",
  113. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  114. "ext-sockets": "To use client-side monitoring"
  115. },
  116. "type": "library",
  117. "extra": {
  118. "branch-alias": {
  119. "dev-master": "3.0-dev"
  120. }
  121. },
  122. "autoload": {
  123. "psr-4": {
  124. "Aws\\": "src/"
  125. },
  126. "files": [
  127. "src/functions.php"
  128. ]
  129. },
  130. "notification-url": "https://packagist.org/downloads/",
  131. "license": [
  132. "Apache-2.0"
  133. ],
  134. "authors": [
  135. {
  136. "name": "Amazon Web Services",
  137. "homepage": "http://aws.amazon.com"
  138. }
  139. ],
  140. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  141. "homepage": "http://aws.amazon.com/sdkforphp",
  142. "keywords": [
  143. "amazon",
  144. "aws",
  145. "cloud",
  146. "dynamodb",
  147. "ec2",
  148. "glacier",
  149. "s3",
  150. "sdk"
  151. ],
  152. "time": "2019-02-28T20:02:04+00:00"
  153. },
  154. {
  155. "name": "beyondcode/laravel-self-diagnosis",
  156. "version": "1.1.1",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/beyondcode/laravel-self-diagnosis.git",
  160. "reference": "57d8707e9d7110d23da7a05ae48a7c51c8778476"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/beyondcode/laravel-self-diagnosis/zipball/57d8707e9d7110d23da7a05ae48a7c51c8778476",
  165. "reference": "57d8707e9d7110d23da7a05ae48a7c51c8778476",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "composer/semver": "^1.4",
  170. "geerlingguy/ping": "^1.1",
  171. "illuminate/support": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
  172. "php": "^7.1",
  173. "vlucas/phpdotenv": "~2.5|~3.3"
  174. },
  175. "require-dev": {
  176. "larapack/dd": "^1.0",
  177. "mockery/mockery": "^1.0",
  178. "orchestra/testbench": "~3.5|~3.8",
  179. "phpunit/phpunit": "^7.0",
  180. "predis/predis": "^1.1",
  181. "scrutinizer/ocular": "^1.5"
  182. },
  183. "type": "library",
  184. "extra": {
  185. "laravel": {
  186. "providers": [
  187. "BeyondCode\\SelfDiagnosis\\SelfDiagnosisServiceProvider"
  188. ]
  189. }
  190. },
  191. "autoload": {
  192. "psr-4": {
  193. "BeyondCode\\SelfDiagnosis\\": "src"
  194. }
  195. },
  196. "notification-url": "https://packagist.org/downloads/",
  197. "license": [
  198. "MIT"
  199. ],
  200. "authors": [
  201. {
  202. "name": "Marcel Pociot",
  203. "email": "marcel@beyondco.de",
  204. "homepage": "https://beyondcode.de",
  205. "role": "Developer"
  206. }
  207. ],
  208. "description": "Perform various self diagnosis tests on your Laravel application.",
  209. "homepage": "https://github.com/beyondcode/laravel-self-diagnosis",
  210. "keywords": [
  211. "beyondcode",
  212. "laravel-self-diagnosis"
  213. ],
  214. "time": "2019-02-27T10:04:53+00:00"
  215. },
  216. {
  217. "name": "bitverse/identicon",
  218. "version": "1.1.1",
  219. "source": {
  220. "type": "git",
  221. "url": "https://github.com/bitverseio/identicon.git",
  222. "reference": "65a50a5a8bd86b3591795937f9652b2e9075626c"
  223. },
  224. "dist": {
  225. "type": "zip",
  226. "url": "https://api.github.com/repos/bitverseio/identicon/zipball/65a50a5a8bd86b3591795937f9652b2e9075626c",
  227. "reference": "65a50a5a8bd86b3591795937f9652b2e9075626c",
  228. "shasum": ""
  229. },
  230. "require": {
  231. "php": ">=5.4.0"
  232. },
  233. "require-dev": {
  234. "phpunit/phpunit": "^5.0"
  235. },
  236. "type": "library",
  237. "autoload": {
  238. "psr-0": {
  239. "": "src/"
  240. }
  241. },
  242. "notification-url": "https://packagist.org/downloads/",
  243. "license": [
  244. "MIT"
  245. ],
  246. "authors": [
  247. {
  248. "name": "Kuba Birecki",
  249. "email": "kuba.birecki@bitverse.io"
  250. }
  251. ],
  252. "description": "A PHP library for generating identicons.",
  253. "time": "2015-11-01T21:19:42+00:00"
  254. },
  255. {
  256. "name": "cakephp/chronos",
  257. "version": "1.2.4",
  258. "source": {
  259. "type": "git",
  260. "url": "https://github.com/cakephp/chronos.git",
  261. "reference": "ebda7326d4a65e53bc5bb915ebbbeee98f1926b0"
  262. },
  263. "dist": {
  264. "type": "zip",
  265. "url": "https://api.github.com/repos/cakephp/chronos/zipball/ebda7326d4a65e53bc5bb915ebbbeee98f1926b0",
  266. "reference": "ebda7326d4a65e53bc5bb915ebbbeee98f1926b0",
  267. "shasum": ""
  268. },
  269. "require": {
  270. "php": "^5.5.9|^7"
  271. },
  272. "require-dev": {
  273. "athletic/athletic": "~0.1",
  274. "cakephp/cakephp-codesniffer": "^3.0",
  275. "phpbench/phpbench": "@dev",
  276. "phpstan/phpstan": "^0.6.4",
  277. "phpunit/phpunit": "<6.0 || ^7.0"
  278. },
  279. "type": "library",
  280. "autoload": {
  281. "psr-4": {
  282. "Cake\\Chronos\\": "src/"
  283. },
  284. "files": [
  285. "src/carbon_compat.php"
  286. ]
  287. },
  288. "notification-url": "https://packagist.org/downloads/",
  289. "license": [
  290. "MIT"
  291. ],
  292. "authors": [
  293. {
  294. "name": "Brian Nesbitt",
  295. "email": "brian@nesbot.com",
  296. "homepage": "http://nesbot.com"
  297. },
  298. {
  299. "name": "The CakePHP Team",
  300. "homepage": "http://cakephp.org"
  301. }
  302. ],
  303. "description": "A simple API extension for DateTime.",
  304. "homepage": "http://cakephp.org",
  305. "keywords": [
  306. "date",
  307. "datetime",
  308. "time"
  309. ],
  310. "time": "2019-02-11T02:08:31+00:00"
  311. },
  312. {
  313. "name": "composer/semver",
  314. "version": "1.4.2",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/composer/semver.git",
  318. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  323. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "php": "^5.3.2 || ^7.0"
  328. },
  329. "require-dev": {
  330. "phpunit/phpunit": "^4.5 || ^5.0.5",
  331. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  332. },
  333. "type": "library",
  334. "extra": {
  335. "branch-alias": {
  336. "dev-master": "1.x-dev"
  337. }
  338. },
  339. "autoload": {
  340. "psr-4": {
  341. "Composer\\Semver\\": "src"
  342. }
  343. },
  344. "notification-url": "https://packagist.org/downloads/",
  345. "license": [
  346. "MIT"
  347. ],
  348. "authors": [
  349. {
  350. "name": "Nils Adermann",
  351. "email": "naderman@naderman.de",
  352. "homepage": "http://www.naderman.de"
  353. },
  354. {
  355. "name": "Jordi Boggiano",
  356. "email": "j.boggiano@seld.be",
  357. "homepage": "http://seld.be"
  358. },
  359. {
  360. "name": "Rob Bast",
  361. "email": "rob.bast@gmail.com",
  362. "homepage": "http://robbast.nl"
  363. }
  364. ],
  365. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  366. "keywords": [
  367. "semantic",
  368. "semver",
  369. "validation",
  370. "versioning"
  371. ],
  372. "time": "2016-08-30T16:08:34+00:00"
  373. },
  374. {
  375. "name": "defuse/php-encryption",
  376. "version": "v2.2.1",
  377. "source": {
  378. "type": "git",
  379. "url": "https://github.com/defuse/php-encryption.git",
  380. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620"
  381. },
  382. "dist": {
  383. "type": "zip",
  384. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/0f407c43b953d571421e0020ba92082ed5fb7620",
  385. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620",
  386. "shasum": ""
  387. },
  388. "require": {
  389. "ext-openssl": "*",
  390. "paragonie/random_compat": ">= 2",
  391. "php": ">=5.4.0"
  392. },
  393. "require-dev": {
  394. "nikic/php-parser": "^2.0|^3.0|^4.0",
  395. "phpunit/phpunit": "^4|^5"
  396. },
  397. "bin": [
  398. "bin/generate-defuse-key"
  399. ],
  400. "type": "library",
  401. "autoload": {
  402. "psr-4": {
  403. "Defuse\\Crypto\\": "src"
  404. }
  405. },
  406. "notification-url": "https://packagist.org/downloads/",
  407. "license": [
  408. "MIT"
  409. ],
  410. "authors": [
  411. {
  412. "name": "Taylor Hornby",
  413. "email": "taylor@defuse.ca",
  414. "homepage": "https://defuse.ca/"
  415. },
  416. {
  417. "name": "Scott Arciszewski",
  418. "email": "info@paragonie.com",
  419. "homepage": "https://paragonie.com"
  420. }
  421. ],
  422. "description": "Secure PHP Encryption Library",
  423. "keywords": [
  424. "aes",
  425. "authenticated encryption",
  426. "cipher",
  427. "crypto",
  428. "cryptography",
  429. "encrypt",
  430. "encryption",
  431. "openssl",
  432. "security",
  433. "symmetric key cryptography"
  434. ],
  435. "time": "2018-07-24T23:27:56+00:00"
  436. },
  437. {
  438. "name": "dnoegel/php-xdg-base-dir",
  439. "version": "0.1",
  440. "source": {
  441. "type": "git",
  442. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  443. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  444. },
  445. "dist": {
  446. "type": "zip",
  447. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  448. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  449. "shasum": ""
  450. },
  451. "require": {
  452. "php": ">=5.3.2"
  453. },
  454. "require-dev": {
  455. "phpunit/phpunit": "@stable"
  456. },
  457. "type": "project",
  458. "autoload": {
  459. "psr-4": {
  460. "XdgBaseDir\\": "src/"
  461. }
  462. },
  463. "notification-url": "https://packagist.org/downloads/",
  464. "license": [
  465. "MIT"
  466. ],
  467. "description": "implementation of xdg base directory specification for php",
  468. "time": "2014-10-24T07:27:01+00:00"
  469. },
  470. {
  471. "name": "doctrine/cache",
  472. "version": "v1.8.0",
  473. "source": {
  474. "type": "git",
  475. "url": "https://github.com/doctrine/cache.git",
  476. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  477. },
  478. "dist": {
  479. "type": "zip",
  480. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  481. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  482. "shasum": ""
  483. },
  484. "require": {
  485. "php": "~7.1"
  486. },
  487. "conflict": {
  488. "doctrine/common": ">2.2,<2.4"
  489. },
  490. "require-dev": {
  491. "alcaeus/mongo-php-adapter": "^1.1",
  492. "doctrine/coding-standard": "^4.0",
  493. "mongodb/mongodb": "^1.1",
  494. "phpunit/phpunit": "^7.0",
  495. "predis/predis": "~1.0"
  496. },
  497. "suggest": {
  498. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  499. },
  500. "type": "library",
  501. "extra": {
  502. "branch-alias": {
  503. "dev-master": "1.8.x-dev"
  504. }
  505. },
  506. "autoload": {
  507. "psr-4": {
  508. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  509. }
  510. },
  511. "notification-url": "https://packagist.org/downloads/",
  512. "license": [
  513. "MIT"
  514. ],
  515. "authors": [
  516. {
  517. "name": "Roman Borschel",
  518. "email": "roman@code-factory.org"
  519. },
  520. {
  521. "name": "Benjamin Eberlei",
  522. "email": "kontakt@beberlei.de"
  523. },
  524. {
  525. "name": "Guilherme Blanco",
  526. "email": "guilhermeblanco@gmail.com"
  527. },
  528. {
  529. "name": "Jonathan Wage",
  530. "email": "jonwage@gmail.com"
  531. },
  532. {
  533. "name": "Johannes Schmitt",
  534. "email": "schmittjoh@gmail.com"
  535. }
  536. ],
  537. "description": "Caching library offering an object-oriented API for many cache backends",
  538. "homepage": "https://www.doctrine-project.org",
  539. "keywords": [
  540. "cache",
  541. "caching"
  542. ],
  543. "time": "2018-08-21T18:01:43+00:00"
  544. },
  545. {
  546. "name": "doctrine/dbal",
  547. "version": "v2.9.2",
  548. "source": {
  549. "type": "git",
  550. "url": "https://github.com/doctrine/dbal.git",
  551. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9"
  552. },
  553. "dist": {
  554. "type": "zip",
  555. "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  556. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  557. "shasum": ""
  558. },
  559. "require": {
  560. "doctrine/cache": "^1.0",
  561. "doctrine/event-manager": "^1.0",
  562. "ext-pdo": "*",
  563. "php": "^7.1"
  564. },
  565. "require-dev": {
  566. "doctrine/coding-standard": "^5.0",
  567. "jetbrains/phpstorm-stubs": "^2018.1.2",
  568. "phpstan/phpstan": "^0.10.1",
  569. "phpunit/phpunit": "^7.4",
  570. "symfony/console": "^2.0.5|^3.0|^4.0",
  571. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  572. },
  573. "suggest": {
  574. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  575. },
  576. "bin": [
  577. "bin/doctrine-dbal"
  578. ],
  579. "type": "library",
  580. "extra": {
  581. "branch-alias": {
  582. "dev-master": "2.9.x-dev",
  583. "dev-develop": "3.0.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Roman Borschel",
  598. "email": "roman@code-factory.org"
  599. },
  600. {
  601. "name": "Benjamin Eberlei",
  602. "email": "kontakt@beberlei.de"
  603. },
  604. {
  605. "name": "Guilherme Blanco",
  606. "email": "guilhermeblanco@gmail.com"
  607. },
  608. {
  609. "name": "Jonathan Wage",
  610. "email": "jonwage@gmail.com"
  611. }
  612. ],
  613. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  614. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  615. "keywords": [
  616. "abstraction",
  617. "database",
  618. "dbal",
  619. "mysql",
  620. "persistence",
  621. "pgsql",
  622. "php",
  623. "queryobject"
  624. ],
  625. "time": "2018-12-31T03:27:51+00:00"
  626. },
  627. {
  628. "name": "doctrine/event-manager",
  629. "version": "v1.0.0",
  630. "source": {
  631. "type": "git",
  632. "url": "https://github.com/doctrine/event-manager.git",
  633. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  634. },
  635. "dist": {
  636. "type": "zip",
  637. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  638. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  639. "shasum": ""
  640. },
  641. "require": {
  642. "php": "^7.1"
  643. },
  644. "conflict": {
  645. "doctrine/common": "<2.9@dev"
  646. },
  647. "require-dev": {
  648. "doctrine/coding-standard": "^4.0",
  649. "phpunit/phpunit": "^7.0"
  650. },
  651. "type": "library",
  652. "extra": {
  653. "branch-alias": {
  654. "dev-master": "1.0.x-dev"
  655. }
  656. },
  657. "autoload": {
  658. "psr-4": {
  659. "Doctrine\\Common\\": "lib/Doctrine/Common"
  660. }
  661. },
  662. "notification-url": "https://packagist.org/downloads/",
  663. "license": [
  664. "MIT"
  665. ],
  666. "authors": [
  667. {
  668. "name": "Roman Borschel",
  669. "email": "roman@code-factory.org"
  670. },
  671. {
  672. "name": "Benjamin Eberlei",
  673. "email": "kontakt@beberlei.de"
  674. },
  675. {
  676. "name": "Guilherme Blanco",
  677. "email": "guilhermeblanco@gmail.com"
  678. },
  679. {
  680. "name": "Jonathan Wage",
  681. "email": "jonwage@gmail.com"
  682. },
  683. {
  684. "name": "Johannes Schmitt",
  685. "email": "schmittjoh@gmail.com"
  686. },
  687. {
  688. "name": "Marco Pivetta",
  689. "email": "ocramius@gmail.com"
  690. }
  691. ],
  692. "description": "Doctrine Event Manager component",
  693. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  694. "keywords": [
  695. "event",
  696. "eventdispatcher",
  697. "eventmanager"
  698. ],
  699. "time": "2018-06-11T11:59:03+00:00"
  700. },
  701. {
  702. "name": "doctrine/inflector",
  703. "version": "v1.3.0",
  704. "source": {
  705. "type": "git",
  706. "url": "https://github.com/doctrine/inflector.git",
  707. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  708. },
  709. "dist": {
  710. "type": "zip",
  711. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  712. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  713. "shasum": ""
  714. },
  715. "require": {
  716. "php": "^7.1"
  717. },
  718. "require-dev": {
  719. "phpunit/phpunit": "^6.2"
  720. },
  721. "type": "library",
  722. "extra": {
  723. "branch-alias": {
  724. "dev-master": "1.3.x-dev"
  725. }
  726. },
  727. "autoload": {
  728. "psr-4": {
  729. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  730. }
  731. },
  732. "notification-url": "https://packagist.org/downloads/",
  733. "license": [
  734. "MIT"
  735. ],
  736. "authors": [
  737. {
  738. "name": "Roman Borschel",
  739. "email": "roman@code-factory.org"
  740. },
  741. {
  742. "name": "Benjamin Eberlei",
  743. "email": "kontakt@beberlei.de"
  744. },
  745. {
  746. "name": "Guilherme Blanco",
  747. "email": "guilhermeblanco@gmail.com"
  748. },
  749. {
  750. "name": "Jonathan Wage",
  751. "email": "jonwage@gmail.com"
  752. },
  753. {
  754. "name": "Johannes Schmitt",
  755. "email": "schmittjoh@gmail.com"
  756. }
  757. ],
  758. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  759. "homepage": "http://www.doctrine-project.org",
  760. "keywords": [
  761. "inflection",
  762. "pluralize",
  763. "singularize",
  764. "string"
  765. ],
  766. "time": "2018-01-09T20:05:19+00:00"
  767. },
  768. {
  769. "name": "doctrine/lexer",
  770. "version": "v1.0.1",
  771. "source": {
  772. "type": "git",
  773. "url": "https://github.com/doctrine/lexer.git",
  774. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  775. },
  776. "dist": {
  777. "type": "zip",
  778. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  779. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  780. "shasum": ""
  781. },
  782. "require": {
  783. "php": ">=5.3.2"
  784. },
  785. "type": "library",
  786. "extra": {
  787. "branch-alias": {
  788. "dev-master": "1.0.x-dev"
  789. }
  790. },
  791. "autoload": {
  792. "psr-0": {
  793. "Doctrine\\Common\\Lexer\\": "lib/"
  794. }
  795. },
  796. "notification-url": "https://packagist.org/downloads/",
  797. "license": [
  798. "MIT"
  799. ],
  800. "authors": [
  801. {
  802. "name": "Roman Borschel",
  803. "email": "roman@code-factory.org"
  804. },
  805. {
  806. "name": "Guilherme Blanco",
  807. "email": "guilhermeblanco@gmail.com"
  808. },
  809. {
  810. "name": "Johannes Schmitt",
  811. "email": "schmittjoh@gmail.com"
  812. }
  813. ],
  814. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  815. "homepage": "http://www.doctrine-project.org",
  816. "keywords": [
  817. "lexer",
  818. "parser"
  819. ],
  820. "time": "2014-09-09T13:34:57+00:00"
  821. },
  822. {
  823. "name": "dragonmantank/cron-expression",
  824. "version": "v2.2.0",
  825. "source": {
  826. "type": "git",
  827. "url": "https://github.com/dragonmantank/cron-expression.git",
  828. "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5"
  829. },
  830. "dist": {
  831. "type": "zip",
  832. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/92a2c3768d50e21a1f26a53cb795ce72806266c5",
  833. "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5",
  834. "shasum": ""
  835. },
  836. "require": {
  837. "php": ">=7.0.0"
  838. },
  839. "require-dev": {
  840. "phpunit/phpunit": "~6.4"
  841. },
  842. "type": "library",
  843. "autoload": {
  844. "psr-4": {
  845. "Cron\\": "src/Cron/"
  846. }
  847. },
  848. "notification-url": "https://packagist.org/downloads/",
  849. "license": [
  850. "MIT"
  851. ],
  852. "authors": [
  853. {
  854. "name": "Michael Dowling",
  855. "email": "mtdowling@gmail.com",
  856. "homepage": "https://github.com/mtdowling"
  857. },
  858. {
  859. "name": "Chris Tankersley",
  860. "email": "chris@ctankersley.com",
  861. "homepage": "https://github.com/dragonmantank"
  862. }
  863. ],
  864. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  865. "keywords": [
  866. "cron",
  867. "schedule"
  868. ],
  869. "time": "2018-06-06T03:12:17+00:00"
  870. },
  871. {
  872. "name": "egulias/email-validator",
  873. "version": "2.1.7",
  874. "source": {
  875. "type": "git",
  876. "url": "https://github.com/egulias/EmailValidator.git",
  877. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e"
  878. },
  879. "dist": {
  880. "type": "zip",
  881. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/709f21f92707308cdf8f9bcfa1af4cb26586521e",
  882. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e",
  883. "shasum": ""
  884. },
  885. "require": {
  886. "doctrine/lexer": "^1.0.1",
  887. "php": ">= 5.5"
  888. },
  889. "require-dev": {
  890. "dominicsayers/isemail": "dev-master",
  891. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  892. "satooshi/php-coveralls": "^1.0.1"
  893. },
  894. "suggest": {
  895. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  896. },
  897. "type": "library",
  898. "extra": {
  899. "branch-alias": {
  900. "dev-master": "2.0.x-dev"
  901. }
  902. },
  903. "autoload": {
  904. "psr-4": {
  905. "Egulias\\EmailValidator\\": "EmailValidator"
  906. }
  907. },
  908. "notification-url": "https://packagist.org/downloads/",
  909. "license": [
  910. "MIT"
  911. ],
  912. "authors": [
  913. {
  914. "name": "Eduardo Gulias Davis"
  915. }
  916. ],
  917. "description": "A library for validating emails against several RFCs",
  918. "homepage": "https://github.com/egulias/EmailValidator",
  919. "keywords": [
  920. "email",
  921. "emailvalidation",
  922. "emailvalidator",
  923. "validation",
  924. "validator"
  925. ],
  926. "time": "2018-12-04T22:38:24+00:00"
  927. },
  928. {
  929. "name": "erusev/parsedown",
  930. "version": "1.7.1",
  931. "source": {
  932. "type": "git",
  933. "url": "https://github.com/erusev/parsedown.git",
  934. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1"
  935. },
  936. "dist": {
  937. "type": "zip",
  938. "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  939. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  940. "shasum": ""
  941. },
  942. "require": {
  943. "ext-mbstring": "*",
  944. "php": ">=5.3.0"
  945. },
  946. "require-dev": {
  947. "phpunit/phpunit": "^4.8.35"
  948. },
  949. "type": "library",
  950. "autoload": {
  951. "psr-0": {
  952. "Parsedown": ""
  953. }
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "MIT"
  958. ],
  959. "authors": [
  960. {
  961. "name": "Emanuil Rusev",
  962. "email": "hello@erusev.com",
  963. "homepage": "http://erusev.com"
  964. }
  965. ],
  966. "description": "Parser for Markdown.",
  967. "homepage": "http://parsedown.org",
  968. "keywords": [
  969. "markdown",
  970. "parser"
  971. ],
  972. "time": "2018-03-08T01:11:30+00:00"
  973. },
  974. {
  975. "name": "evenement/evenement",
  976. "version": "v2.1.0",
  977. "source": {
  978. "type": "git",
  979. "url": "https://github.com/igorw/evenement.git",
  980. "reference": "6ba9a777870ab49f417e703229d53931ed40fd7a"
  981. },
  982. "dist": {
  983. "type": "zip",
  984. "url": "https://api.github.com/repos/igorw/evenement/zipball/6ba9a777870ab49f417e703229d53931ed40fd7a",
  985. "reference": "6ba9a777870ab49f417e703229d53931ed40fd7a",
  986. "shasum": ""
  987. },
  988. "require": {
  989. "php": ">=5.4.0"
  990. },
  991. "require-dev": {
  992. "phpunit/phpunit": "^6.0||^5.7||^4.8.35"
  993. },
  994. "type": "library",
  995. "extra": {
  996. "branch-alias": {
  997. "dev-master": "2.0-dev"
  998. }
  999. },
  1000. "autoload": {
  1001. "psr-0": {
  1002. "Evenement": "src"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "authors": [
  1010. {
  1011. "name": "Igor Wiedler",
  1012. "email": "igor@wiedler.ch"
  1013. }
  1014. ],
  1015. "description": "Événement is a very simple event dispatching library for PHP",
  1016. "keywords": [
  1017. "event-dispatcher",
  1018. "event-emitter"
  1019. ],
  1020. "time": "2017-07-17T17:39:19+00:00"
  1021. },
  1022. {
  1023. "name": "ezyang/htmlpurifier",
  1024. "version": "v4.10.0",
  1025. "source": {
  1026. "type": "git",
  1027. "url": "https://github.com/ezyang/htmlpurifier.git",
  1028. "reference": "d85d39da4576a6934b72480be6978fb10c860021"
  1029. },
  1030. "dist": {
  1031. "type": "zip",
  1032. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
  1033. "reference": "d85d39da4576a6934b72480be6978fb10c860021",
  1034. "shasum": ""
  1035. },
  1036. "require": {
  1037. "php": ">=5.2"
  1038. },
  1039. "require-dev": {
  1040. "simpletest/simpletest": "^1.1"
  1041. },
  1042. "type": "library",
  1043. "autoload": {
  1044. "psr-0": {
  1045. "HTMLPurifier": "library/"
  1046. },
  1047. "files": [
  1048. "library/HTMLPurifier.composer.php"
  1049. ]
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "LGPL"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "Edward Z. Yang",
  1058. "email": "admin@htmlpurifier.org",
  1059. "homepage": "http://ezyang.com"
  1060. }
  1061. ],
  1062. "description": "Standards compliant HTML filter written in PHP",
  1063. "homepage": "http://htmlpurifier.org/",
  1064. "keywords": [
  1065. "html"
  1066. ],
  1067. "time": "2018-02-23T01:58:20+00:00"
  1068. },
  1069. {
  1070. "name": "fideloper/proxy",
  1071. "version": "4.1.0",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/fideloper/TrustedProxy.git",
  1075. "reference": "177c79a2d1f9970f89ee2fb4c12b429af38b6dfb"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/177c79a2d1f9970f89ee2fb4c12b429af38b6dfb",
  1080. "reference": "177c79a2d1f9970f89ee2fb4c12b429af38b6dfb",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "illuminate/contracts": "~5.0",
  1085. "php": ">=5.4.0"
  1086. },
  1087. "require-dev": {
  1088. "illuminate/http": "~5.6",
  1089. "mockery/mockery": "~1.0",
  1090. "phpunit/phpunit": "^6.0"
  1091. },
  1092. "type": "library",
  1093. "extra": {
  1094. "laravel": {
  1095. "providers": [
  1096. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1097. ]
  1098. }
  1099. },
  1100. "autoload": {
  1101. "psr-4": {
  1102. "Fideloper\\Proxy\\": "src/"
  1103. }
  1104. },
  1105. "notification-url": "https://packagist.org/downloads/",
  1106. "license": [
  1107. "MIT"
  1108. ],
  1109. "authors": [
  1110. {
  1111. "name": "Chris Fidao",
  1112. "email": "fideloper@gmail.com"
  1113. }
  1114. ],
  1115. "description": "Set trusted proxies for Laravel",
  1116. "keywords": [
  1117. "load balancing",
  1118. "proxy",
  1119. "trusted proxy"
  1120. ],
  1121. "time": "2019-01-10T14:06:47+00:00"
  1122. },
  1123. {
  1124. "name": "firebase/php-jwt",
  1125. "version": "v5.0.0",
  1126. "source": {
  1127. "type": "git",
  1128. "url": "https://github.com/firebase/php-jwt.git",
  1129. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
  1130. },
  1131. "dist": {
  1132. "type": "zip",
  1133. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1134. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  1135. "shasum": ""
  1136. },
  1137. "require": {
  1138. "php": ">=5.3.0"
  1139. },
  1140. "require-dev": {
  1141. "phpunit/phpunit": " 4.8.35"
  1142. },
  1143. "type": "library",
  1144. "autoload": {
  1145. "psr-4": {
  1146. "Firebase\\JWT\\": "src"
  1147. }
  1148. },
  1149. "notification-url": "https://packagist.org/downloads/",
  1150. "license": [
  1151. "BSD-3-Clause"
  1152. ],
  1153. "authors": [
  1154. {
  1155. "name": "Neuman Vong",
  1156. "email": "neuman+pear@twilio.com",
  1157. "role": "Developer"
  1158. },
  1159. {
  1160. "name": "Anant Narayanan",
  1161. "email": "anant@php.net",
  1162. "role": "Developer"
  1163. }
  1164. ],
  1165. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1166. "homepage": "https://github.com/firebase/php-jwt",
  1167. "time": "2017-06-27T22:17:23+00:00"
  1168. },
  1169. {
  1170. "name": "geerlingguy/ping",
  1171. "version": "1.1.2",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/geerlingguy/Ping.git",
  1175. "reference": "b16248c0a59a6555437744db8b78c0589cfc32f9"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/geerlingguy/Ping/zipball/b16248c0a59a6555437744db8b78c0589cfc32f9",
  1180. "reference": "b16248c0a59a6555437744db8b78c0589cfc32f9",
  1181. "shasum": ""
  1182. },
  1183. "type": "library",
  1184. "autoload": {
  1185. "classmap": [
  1186. "JJG/Ping.php"
  1187. ]
  1188. },
  1189. "notification-url": "https://packagist.org/downloads/",
  1190. "license": [
  1191. "MIT"
  1192. ],
  1193. "authors": [
  1194. {
  1195. "name": "Jeff Geerling",
  1196. "email": "jeff@jeffgeerling.com"
  1197. }
  1198. ],
  1199. "description": "A PHP class to ping hosts.",
  1200. "time": "2017-02-02T15:38:40+00:00"
  1201. },
  1202. {
  1203. "name": "greggilbert/recaptcha",
  1204. "version": "dev-master",
  1205. "source": {
  1206. "type": "git",
  1207. "url": "https://github.com/greggilbert/recaptcha.git",
  1208. "reference": "c2ed383785a4fe20467ce470c97c303e5c5b85de"
  1209. },
  1210. "dist": {
  1211. "type": "zip",
  1212. "url": "https://api.github.com/repos/greggilbert/recaptcha/zipball/c2ed383785a4fe20467ce470c97c303e5c5b85de",
  1213. "reference": "c2ed383785a4fe20467ce470c97c303e5c5b85de",
  1214. "shasum": ""
  1215. },
  1216. "require": {
  1217. "illuminate/support": "~5.1",
  1218. "php": ">=5.3.0"
  1219. },
  1220. "type": "library",
  1221. "extra": {
  1222. "branch-alias": {
  1223. "dev-master": "2.2-dev"
  1224. }
  1225. },
  1226. "autoload": {
  1227. "classmap": [
  1228. "src/migrations"
  1229. ],
  1230. "psr-4": {
  1231. "Greggilbert\\Recaptcha\\": "src/"
  1232. }
  1233. },
  1234. "notification-url": "https://packagist.org/downloads/",
  1235. "license": [
  1236. "MIT"
  1237. ],
  1238. "authors": [
  1239. {
  1240. "name": "Greg Gilbert",
  1241. "email": "greg@greg-gilbert.com"
  1242. }
  1243. ],
  1244. "description": "reCAPTCHA Validator for Laravel 5",
  1245. "homepage": "http://github.com/greggilbert/recaptcha",
  1246. "keywords": [
  1247. "captcha",
  1248. "laravel",
  1249. "laravel5",
  1250. "recaptcha"
  1251. ],
  1252. "time": "2017-08-31T03:39:47+00:00"
  1253. },
  1254. {
  1255. "name": "guzzlehttp/guzzle",
  1256. "version": "6.3.3",
  1257. "source": {
  1258. "type": "git",
  1259. "url": "https://github.com/guzzle/guzzle.git",
  1260. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  1261. },
  1262. "dist": {
  1263. "type": "zip",
  1264. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1265. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1266. "shasum": ""
  1267. },
  1268. "require": {
  1269. "guzzlehttp/promises": "^1.0",
  1270. "guzzlehttp/psr7": "^1.4",
  1271. "php": ">=5.5"
  1272. },
  1273. "require-dev": {
  1274. "ext-curl": "*",
  1275. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1276. "psr/log": "^1.0"
  1277. },
  1278. "suggest": {
  1279. "psr/log": "Required for using the Log middleware"
  1280. },
  1281. "type": "library",
  1282. "extra": {
  1283. "branch-alias": {
  1284. "dev-master": "6.3-dev"
  1285. }
  1286. },
  1287. "autoload": {
  1288. "files": [
  1289. "src/functions_include.php"
  1290. ],
  1291. "psr-4": {
  1292. "GuzzleHttp\\": "src/"
  1293. }
  1294. },
  1295. "notification-url": "https://packagist.org/downloads/",
  1296. "license": [
  1297. "MIT"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "Michael Dowling",
  1302. "email": "mtdowling@gmail.com",
  1303. "homepage": "https://github.com/mtdowling"
  1304. }
  1305. ],
  1306. "description": "Guzzle is a PHP HTTP client library",
  1307. "homepage": "http://guzzlephp.org/",
  1308. "keywords": [
  1309. "client",
  1310. "curl",
  1311. "framework",
  1312. "http",
  1313. "http client",
  1314. "rest",
  1315. "web service"
  1316. ],
  1317. "time": "2018-04-22T15:46:56+00:00"
  1318. },
  1319. {
  1320. "name": "guzzlehttp/promises",
  1321. "version": "v1.3.1",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/guzzle/promises.git",
  1325. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1330. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1331. "shasum": ""
  1332. },
  1333. "require": {
  1334. "php": ">=5.5.0"
  1335. },
  1336. "require-dev": {
  1337. "phpunit/phpunit": "^4.0"
  1338. },
  1339. "type": "library",
  1340. "extra": {
  1341. "branch-alias": {
  1342. "dev-master": "1.4-dev"
  1343. }
  1344. },
  1345. "autoload": {
  1346. "psr-4": {
  1347. "GuzzleHttp\\Promise\\": "src/"
  1348. },
  1349. "files": [
  1350. "src/functions_include.php"
  1351. ]
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "MIT"
  1356. ],
  1357. "authors": [
  1358. {
  1359. "name": "Michael Dowling",
  1360. "email": "mtdowling@gmail.com",
  1361. "homepage": "https://github.com/mtdowling"
  1362. }
  1363. ],
  1364. "description": "Guzzle promises library",
  1365. "keywords": [
  1366. "promise"
  1367. ],
  1368. "time": "2016-12-20T10:07:11+00:00"
  1369. },
  1370. {
  1371. "name": "guzzlehttp/psr7",
  1372. "version": "1.5.2",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/guzzle/psr7.git",
  1376. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  1381. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "php": ">=5.4.0",
  1386. "psr/http-message": "~1.0",
  1387. "ralouphie/getallheaders": "^2.0.5"
  1388. },
  1389. "provide": {
  1390. "psr/http-message-implementation": "1.0"
  1391. },
  1392. "require-dev": {
  1393. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1394. },
  1395. "type": "library",
  1396. "extra": {
  1397. "branch-alias": {
  1398. "dev-master": "1.5-dev"
  1399. }
  1400. },
  1401. "autoload": {
  1402. "psr-4": {
  1403. "GuzzleHttp\\Psr7\\": "src/"
  1404. },
  1405. "files": [
  1406. "src/functions_include.php"
  1407. ]
  1408. },
  1409. "notification-url": "https://packagist.org/downloads/",
  1410. "license": [
  1411. "MIT"
  1412. ],
  1413. "authors": [
  1414. {
  1415. "name": "Michael Dowling",
  1416. "email": "mtdowling@gmail.com",
  1417. "homepage": "https://github.com/mtdowling"
  1418. },
  1419. {
  1420. "name": "Tobias Schultze",
  1421. "homepage": "https://github.com/Tobion"
  1422. }
  1423. ],
  1424. "description": "PSR-7 message implementation that also provides common utility methods",
  1425. "keywords": [
  1426. "http",
  1427. "message",
  1428. "psr-7",
  1429. "request",
  1430. "response",
  1431. "stream",
  1432. "uri",
  1433. "url"
  1434. ],
  1435. "time": "2018-12-04T20:46:45+00:00"
  1436. },
  1437. {
  1438. "name": "intervention/image",
  1439. "version": "2.4.2",
  1440. "source": {
  1441. "type": "git",
  1442. "url": "https://github.com/Intervention/image.git",
  1443. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb"
  1444. },
  1445. "dist": {
  1446. "type": "zip",
  1447. "url": "https://api.github.com/repos/Intervention/image/zipball/e82d274f786e3d4b866a59b173f42e716f0783eb",
  1448. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb",
  1449. "shasum": ""
  1450. },
  1451. "require": {
  1452. "ext-fileinfo": "*",
  1453. "guzzlehttp/psr7": "~1.1",
  1454. "php": ">=5.4.0"
  1455. },
  1456. "require-dev": {
  1457. "mockery/mockery": "~0.9.2",
  1458. "phpunit/phpunit": "^4.8 || ^5.7"
  1459. },
  1460. "suggest": {
  1461. "ext-gd": "to use GD library based image processing.",
  1462. "ext-imagick": "to use Imagick based image processing.",
  1463. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1464. },
  1465. "type": "library",
  1466. "extra": {
  1467. "branch-alias": {
  1468. "dev-master": "2.4-dev"
  1469. },
  1470. "laravel": {
  1471. "providers": [
  1472. "Intervention\\Image\\ImageServiceProvider"
  1473. ],
  1474. "aliases": {
  1475. "Image": "Intervention\\Image\\Facades\\Image"
  1476. }
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Intervention\\Image\\": "src/Intervention/Image"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "authors": [
  1489. {
  1490. "name": "Oliver Vogel",
  1491. "email": "oliver@olivervogel.com",
  1492. "homepage": "http://olivervogel.com/"
  1493. }
  1494. ],
  1495. "description": "Image handling and manipulation library with support for Laravel integration",
  1496. "homepage": "http://image.intervention.io/",
  1497. "keywords": [
  1498. "gd",
  1499. "image",
  1500. "imagick",
  1501. "laravel",
  1502. "thumbnail",
  1503. "watermark"
  1504. ],
  1505. "time": "2018-05-29T14:19:03+00:00"
  1506. },
  1507. {
  1508. "name": "jakub-onderka/php-console-color",
  1509. "version": "v0.2",
  1510. "source": {
  1511. "type": "git",
  1512. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  1513. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  1514. },
  1515. "dist": {
  1516. "type": "zip",
  1517. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  1518. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  1519. "shasum": ""
  1520. },
  1521. "require": {
  1522. "php": ">=5.4.0"
  1523. },
  1524. "require-dev": {
  1525. "jakub-onderka/php-code-style": "1.0",
  1526. "jakub-onderka/php-parallel-lint": "1.0",
  1527. "jakub-onderka/php-var-dump-check": "0.*",
  1528. "phpunit/phpunit": "~4.3",
  1529. "squizlabs/php_codesniffer": "1.*"
  1530. },
  1531. "type": "library",
  1532. "autoload": {
  1533. "psr-4": {
  1534. "JakubOnderka\\PhpConsoleColor\\": "src/"
  1535. }
  1536. },
  1537. "notification-url": "https://packagist.org/downloads/",
  1538. "license": [
  1539. "BSD-2-Clause"
  1540. ],
  1541. "authors": [
  1542. {
  1543. "name": "Jakub Onderka",
  1544. "email": "jakub.onderka@gmail.com"
  1545. }
  1546. ],
  1547. "time": "2018-09-29T17:23:10+00:00"
  1548. },
  1549. {
  1550. "name": "jakub-onderka/php-console-highlighter",
  1551. "version": "v0.4",
  1552. "source": {
  1553. "type": "git",
  1554. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1555. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  1556. },
  1557. "dist": {
  1558. "type": "zip",
  1559. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1560. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1561. "shasum": ""
  1562. },
  1563. "require": {
  1564. "ext-tokenizer": "*",
  1565. "jakub-onderka/php-console-color": "~0.2",
  1566. "php": ">=5.4.0"
  1567. },
  1568. "require-dev": {
  1569. "jakub-onderka/php-code-style": "~1.0",
  1570. "jakub-onderka/php-parallel-lint": "~1.0",
  1571. "jakub-onderka/php-var-dump-check": "~0.1",
  1572. "phpunit/phpunit": "~4.0",
  1573. "squizlabs/php_codesniffer": "~1.5"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "psr-4": {
  1578. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Jakub Onderka",
  1588. "email": "acci@acci.cz",
  1589. "homepage": "http://www.acci.cz/"
  1590. }
  1591. ],
  1592. "description": "Highlight PHP code in terminal",
  1593. "time": "2018-09-29T18:48:56+00:00"
  1594. },
  1595. {
  1596. "name": "laravel/framework",
  1597. "version": "v5.8.2",
  1598. "source": {
  1599. "type": "git",
  1600. "url": "https://github.com/laravel/framework.git",
  1601. "reference": "c3b7cbe700efb0f4c9a5359feaedb0a1f0a741ca"
  1602. },
  1603. "dist": {
  1604. "type": "zip",
  1605. "url": "https://api.github.com/repos/laravel/framework/zipball/c3b7cbe700efb0f4c9a5359feaedb0a1f0a741ca",
  1606. "reference": "c3b7cbe700efb0f4c9a5359feaedb0a1f0a741ca",
  1607. "shasum": ""
  1608. },
  1609. "require": {
  1610. "doctrine/inflector": "^1.1",
  1611. "dragonmantank/cron-expression": "^2.0",
  1612. "egulias/email-validator": "^2.0",
  1613. "erusev/parsedown": "^1.7",
  1614. "ext-json": "*",
  1615. "ext-mbstring": "*",
  1616. "ext-openssl": "*",
  1617. "league/flysystem": "^1.0.8",
  1618. "monolog/monolog": "^1.12",
  1619. "nesbot/carbon": "^1.26.3 || ^2.0",
  1620. "opis/closure": "^3.1",
  1621. "php": "^7.1.3",
  1622. "psr/container": "^1.0",
  1623. "psr/simple-cache": "^1.0",
  1624. "ramsey/uuid": "^3.7",
  1625. "swiftmailer/swiftmailer": "^6.0",
  1626. "symfony/console": "^4.2",
  1627. "symfony/debug": "^4.2",
  1628. "symfony/finder": "^4.2",
  1629. "symfony/http-foundation": "^4.2",
  1630. "symfony/http-kernel": "^4.2",
  1631. "symfony/process": "^4.2",
  1632. "symfony/routing": "^4.2",
  1633. "symfony/var-dumper": "^4.2",
  1634. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  1635. "vlucas/phpdotenv": "^3.3"
  1636. },
  1637. "conflict": {
  1638. "tightenco/collect": "<5.5.33"
  1639. },
  1640. "replace": {
  1641. "illuminate/auth": "self.version",
  1642. "illuminate/broadcasting": "self.version",
  1643. "illuminate/bus": "self.version",
  1644. "illuminate/cache": "self.version",
  1645. "illuminate/config": "self.version",
  1646. "illuminate/console": "self.version",
  1647. "illuminate/container": "self.version",
  1648. "illuminate/contracts": "self.version",
  1649. "illuminate/cookie": "self.version",
  1650. "illuminate/database": "self.version",
  1651. "illuminate/encryption": "self.version",
  1652. "illuminate/events": "self.version",
  1653. "illuminate/filesystem": "self.version",
  1654. "illuminate/hashing": "self.version",
  1655. "illuminate/http": "self.version",
  1656. "illuminate/log": "self.version",
  1657. "illuminate/mail": "self.version",
  1658. "illuminate/notifications": "self.version",
  1659. "illuminate/pagination": "self.version",
  1660. "illuminate/pipeline": "self.version",
  1661. "illuminate/queue": "self.version",
  1662. "illuminate/redis": "self.version",
  1663. "illuminate/routing": "self.version",
  1664. "illuminate/session": "self.version",
  1665. "illuminate/support": "self.version",
  1666. "illuminate/translation": "self.version",
  1667. "illuminate/validation": "self.version",
  1668. "illuminate/view": "self.version"
  1669. },
  1670. "require-dev": {
  1671. "aws/aws-sdk-php": "^3.0",
  1672. "doctrine/dbal": "^2.6",
  1673. "filp/whoops": "^2.1.4",
  1674. "guzzlehttp/guzzle": "^6.3",
  1675. "league/flysystem-cached-adapter": "^1.0",
  1676. "mockery/mockery": "^1.0",
  1677. "moontoast/math": "^1.1",
  1678. "orchestra/testbench-core": "3.8.*",
  1679. "pda/pheanstalk": "^4.0",
  1680. "phpunit/phpunit": "^7.5|^8.0",
  1681. "predis/predis": "^1.1.1",
  1682. "symfony/css-selector": "^4.2",
  1683. "symfony/dom-crawler": "^4.2",
  1684. "true/punycode": "^2.1"
  1685. },
  1686. "suggest": {
  1687. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).",
  1688. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1689. "ext-pcntl": "Required to use all features of the queue worker.",
  1690. "ext-posix": "Required to use all features of the queue worker.",
  1691. "filp/whoops": "Required for friendly error pages in development (^2.1.4).",
  1692. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  1693. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).",
  1694. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  1695. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1696. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1697. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).",
  1698. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1699. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1700. "nexmo/client": "Required to use the Nexmo transport (^1.0).",
  1701. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1702. "predis/predis": "Required to use the redis cache and queue drivers (^1.0).",
  1703. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).",
  1704. "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.2).",
  1705. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.2).",
  1706. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.1).",
  1707. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1708. },
  1709. "type": "library",
  1710. "extra": {
  1711. "branch-alias": {
  1712. "dev-master": "5.8-dev"
  1713. }
  1714. },
  1715. "autoload": {
  1716. "files": [
  1717. "src/Illuminate/Foundation/helpers.php",
  1718. "src/Illuminate/Support/helpers.php"
  1719. ],
  1720. "psr-4": {
  1721. "Illuminate\\": "src/Illuminate/"
  1722. }
  1723. },
  1724. "notification-url": "https://packagist.org/downloads/",
  1725. "license": [
  1726. "MIT"
  1727. ],
  1728. "authors": [
  1729. {
  1730. "name": "Taylor Otwell",
  1731. "email": "taylor@laravel.com"
  1732. }
  1733. ],
  1734. "description": "The Laravel Framework.",
  1735. "homepage": "https://laravel.com",
  1736. "keywords": [
  1737. "framework",
  1738. "laravel"
  1739. ],
  1740. "time": "2019-02-27T14:02:36+00:00"
  1741. },
  1742. {
  1743. "name": "laravel/horizon",
  1744. "version": "v3.0.0",
  1745. "source": {
  1746. "type": "git",
  1747. "url": "https://github.com/laravel/horizon.git",
  1748. "reference": "11acb6eafee4a0ea3bea87c6277f4342ebd2e1e3"
  1749. },
  1750. "dist": {
  1751. "type": "zip",
  1752. "url": "https://api.github.com/repos/laravel/horizon/zipball/11acb6eafee4a0ea3bea87c6277f4342ebd2e1e3",
  1753. "reference": "11acb6eafee4a0ea3bea87c6277f4342ebd2e1e3",
  1754. "shasum": ""
  1755. },
  1756. "require": {
  1757. "cakephp/chronos": "^1.0",
  1758. "ext-json": "*",
  1759. "ext-pcntl": "*",
  1760. "ext-posix": "*",
  1761. "illuminate/contracts": "~5.7.0|~5.8.0",
  1762. "illuminate/queue": "~5.7.0|~5.8.0",
  1763. "illuminate/support": "~5.7.0|~5.8.0",
  1764. "php": ">=7.1.0",
  1765. "predis/predis": "^1.1",
  1766. "ramsey/uuid": "^3.5",
  1767. "symfony/debug": "^4.2",
  1768. "symfony/process": "^4.2"
  1769. },
  1770. "require-dev": {
  1771. "mockery/mockery": "^1.0",
  1772. "orchestra/database": "^3.7",
  1773. "orchestra/testbench": "^3.7",
  1774. "phpunit/phpunit": "^7.0"
  1775. },
  1776. "type": "library",
  1777. "extra": {
  1778. "branch-alias": {
  1779. "dev-master": "3.0-dev"
  1780. },
  1781. "laravel": {
  1782. "providers": [
  1783. "Laravel\\Horizon\\HorizonServiceProvider"
  1784. ],
  1785. "aliases": {
  1786. "Horizon": "Laravel\\Horizon\\Horizon"
  1787. }
  1788. }
  1789. },
  1790. "autoload": {
  1791. "psr-4": {
  1792. "Laravel\\Horizon\\": "src/"
  1793. }
  1794. },
  1795. "notification-url": "https://packagist.org/downloads/",
  1796. "license": [
  1797. "MIT"
  1798. ],
  1799. "authors": [
  1800. {
  1801. "name": "Taylor Otwell",
  1802. "email": "taylor@laravel.com"
  1803. }
  1804. ],
  1805. "description": "Dashboard and code-driven configuration for Laravel queues.",
  1806. "keywords": [
  1807. "laravel",
  1808. "queue"
  1809. ],
  1810. "time": "2019-02-27T15:44:24+00:00"
  1811. },
  1812. {
  1813. "name": "laravel/passport",
  1814. "version": "v7.2.0",
  1815. "source": {
  1816. "type": "git",
  1817. "url": "https://github.com/laravel/passport.git",
  1818. "reference": "56330509283d465acaaff842637e539d03bcf9ca"
  1819. },
  1820. "dist": {
  1821. "type": "zip",
  1822. "url": "https://api.github.com/repos/laravel/passport/zipball/56330509283d465acaaff842637e539d03bcf9ca",
  1823. "reference": "56330509283d465acaaff842637e539d03bcf9ca",
  1824. "shasum": ""
  1825. },
  1826. "require": {
  1827. "ext-json": "*",
  1828. "firebase/php-jwt": "~3.0|~4.0|~5.0",
  1829. "guzzlehttp/guzzle": "~6.0",
  1830. "illuminate/auth": "~5.6.0|~5.7.0|~5.8.0",
  1831. "illuminate/console": "~5.6.0|~5.7.0|~5.8.0",
  1832. "illuminate/container": "~5.6.0|~5.7.0|~5.8.0",
  1833. "illuminate/contracts": "~5.6.0|~5.7.0|~5.8.0",
  1834. "illuminate/database": "~5.6.0|~5.7.0|~5.8.0",
  1835. "illuminate/encryption": "~5.6.0|~5.7.0|~5.8.0",
  1836. "illuminate/http": "~5.6.0|~5.7.0|~5.8.0",
  1837. "illuminate/support": "~5.6.0|~5.7.0|~5.8.0",
  1838. "league/oauth2-server": "^7.0",
  1839. "php": ">=7.1",
  1840. "phpseclib/phpseclib": "^2.0",
  1841. "symfony/psr-http-message-bridge": "~1.0",
  1842. "zendframework/zend-diactoros": "~1.0"
  1843. },
  1844. "require-dev": {
  1845. "mockery/mockery": "~1.0",
  1846. "phpunit/phpunit": "~7.4"
  1847. },
  1848. "type": "library",
  1849. "extra": {
  1850. "branch-alias": {
  1851. "dev-master": "7.0-dev"
  1852. },
  1853. "laravel": {
  1854. "providers": [
  1855. "Laravel\\Passport\\PassportServiceProvider"
  1856. ]
  1857. }
  1858. },
  1859. "autoload": {
  1860. "psr-4": {
  1861. "Laravel\\Passport\\": "src/"
  1862. }
  1863. },
  1864. "notification-url": "https://packagist.org/downloads/",
  1865. "license": [
  1866. "MIT"
  1867. ],
  1868. "authors": [
  1869. {
  1870. "name": "Taylor Otwell",
  1871. "email": "taylor@laravel.com"
  1872. }
  1873. ],
  1874. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  1875. "keywords": [
  1876. "laravel",
  1877. "oauth",
  1878. "passport"
  1879. ],
  1880. "time": "2019-02-14T16:29:26+00:00"
  1881. },
  1882. {
  1883. "name": "laravel/tinker",
  1884. "version": "v1.0.8",
  1885. "source": {
  1886. "type": "git",
  1887. "url": "https://github.com/laravel/tinker.git",
  1888. "reference": "cafbf598a90acde68985660e79b2b03c5609a405"
  1889. },
  1890. "dist": {
  1891. "type": "zip",
  1892. "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405",
  1893. "reference": "cafbf598a90acde68985660e79b2b03c5609a405",
  1894. "shasum": ""
  1895. },
  1896. "require": {
  1897. "illuminate/console": "~5.1",
  1898. "illuminate/contracts": "~5.1",
  1899. "illuminate/support": "~5.1",
  1900. "php": ">=5.5.9",
  1901. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1902. "symfony/var-dumper": "~3.0|~4.0"
  1903. },
  1904. "require-dev": {
  1905. "phpunit/phpunit": "~4.0|~5.0"
  1906. },
  1907. "suggest": {
  1908. "illuminate/database": "The Illuminate Database package (~5.1)."
  1909. },
  1910. "type": "library",
  1911. "extra": {
  1912. "branch-alias": {
  1913. "dev-master": "1.0-dev"
  1914. },
  1915. "laravel": {
  1916. "providers": [
  1917. "Laravel\\Tinker\\TinkerServiceProvider"
  1918. ]
  1919. }
  1920. },
  1921. "autoload": {
  1922. "psr-4": {
  1923. "Laravel\\Tinker\\": "src/"
  1924. }
  1925. },
  1926. "notification-url": "https://packagist.org/downloads/",
  1927. "license": [
  1928. "MIT"
  1929. ],
  1930. "authors": [
  1931. {
  1932. "name": "Taylor Otwell",
  1933. "email": "taylor@laravel.com"
  1934. }
  1935. ],
  1936. "description": "Powerful REPL for the Laravel framework.",
  1937. "keywords": [
  1938. "REPL",
  1939. "Tinker",
  1940. "laravel",
  1941. "psysh"
  1942. ],
  1943. "time": "2018-10-12T19:39:35+00:00"
  1944. },
  1945. {
  1946. "name": "lcobucci/jwt",
  1947. "version": "3.2.5",
  1948. "source": {
  1949. "type": "git",
  1950. "url": "https://github.com/lcobucci/jwt.git",
  1951. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b"
  1952. },
  1953. "dist": {
  1954. "type": "zip",
  1955. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/82be04b4753f8b7693b62852b7eab30f97524f9b",
  1956. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b",
  1957. "shasum": ""
  1958. },
  1959. "require": {
  1960. "ext-openssl": "*",
  1961. "php": ">=5.5"
  1962. },
  1963. "require-dev": {
  1964. "mdanter/ecc": "~0.3.1",
  1965. "mikey179/vfsstream": "~1.5",
  1966. "phpmd/phpmd": "~2.2",
  1967. "phpunit/php-invoker": "~1.1",
  1968. "phpunit/phpunit": "~4.5",
  1969. "squizlabs/php_codesniffer": "~2.3"
  1970. },
  1971. "suggest": {
  1972. "mdanter/ecc": "Required to use Elliptic Curves based algorithms."
  1973. },
  1974. "type": "library",
  1975. "extra": {
  1976. "branch-alias": {
  1977. "dev-master": "3.1-dev"
  1978. }
  1979. },
  1980. "autoload": {
  1981. "psr-4": {
  1982. "Lcobucci\\JWT\\": "src"
  1983. }
  1984. },
  1985. "notification-url": "https://packagist.org/downloads/",
  1986. "license": [
  1987. "BSD-3-Clause"
  1988. ],
  1989. "authors": [
  1990. {
  1991. "name": "Luís Otávio Cobucci Oblonczyk",
  1992. "email": "lcobucci@gmail.com",
  1993. "role": "Developer"
  1994. }
  1995. ],
  1996. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1997. "keywords": [
  1998. "JWS",
  1999. "jwt"
  2000. ],
  2001. "time": "2018-11-11T12:22:26+00:00"
  2002. },
  2003. {
  2004. "name": "league/event",
  2005. "version": "2.2.0",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://github.com/thephpleague/event.git",
  2009. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  2014. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  2015. "shasum": ""
  2016. },
  2017. "require": {
  2018. "php": ">=5.4.0"
  2019. },
  2020. "require-dev": {
  2021. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  2022. "phpspec/phpspec": "^2.2"
  2023. },
  2024. "type": "library",
  2025. "extra": {
  2026. "branch-alias": {
  2027. "dev-master": "2.2-dev"
  2028. }
  2029. },
  2030. "autoload": {
  2031. "psr-4": {
  2032. "League\\Event\\": "src/"
  2033. }
  2034. },
  2035. "notification-url": "https://packagist.org/downloads/",
  2036. "license": [
  2037. "MIT"
  2038. ],
  2039. "authors": [
  2040. {
  2041. "name": "Frank de Jonge",
  2042. "email": "info@frenky.net"
  2043. }
  2044. ],
  2045. "description": "Event package",
  2046. "keywords": [
  2047. "emitter",
  2048. "event",
  2049. "listener"
  2050. ],
  2051. "time": "2018-11-26T11:52:41+00:00"
  2052. },
  2053. {
  2054. "name": "league/flysystem",
  2055. "version": "1.0.50",
  2056. "source": {
  2057. "type": "git",
  2058. "url": "https://github.com/thephpleague/flysystem.git",
  2059. "reference": "dab4e7624efa543a943be978008f439c333f2249"
  2060. },
  2061. "dist": {
  2062. "type": "zip",
  2063. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/dab4e7624efa543a943be978008f439c333f2249",
  2064. "reference": "dab4e7624efa543a943be978008f439c333f2249",
  2065. "shasum": ""
  2066. },
  2067. "require": {
  2068. "ext-fileinfo": "*",
  2069. "php": ">=5.5.9"
  2070. },
  2071. "conflict": {
  2072. "league/flysystem-sftp": "<1.0.6"
  2073. },
  2074. "require-dev": {
  2075. "phpspec/phpspec": "^3.4",
  2076. "phpunit/phpunit": "^5.7.10"
  2077. },
  2078. "suggest": {
  2079. "ext-fileinfo": "Required for MimeType",
  2080. "ext-ftp": "Allows you to use FTP server storage",
  2081. "ext-openssl": "Allows you to use FTPS server storage",
  2082. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2083. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2084. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2085. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2086. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2087. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2088. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2089. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2090. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2091. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2092. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2093. },
  2094. "type": "library",
  2095. "extra": {
  2096. "branch-alias": {
  2097. "dev-master": "1.1-dev"
  2098. }
  2099. },
  2100. "autoload": {
  2101. "psr-4": {
  2102. "League\\Flysystem\\": "src/"
  2103. }
  2104. },
  2105. "notification-url": "https://packagist.org/downloads/",
  2106. "license": [
  2107. "MIT"
  2108. ],
  2109. "authors": [
  2110. {
  2111. "name": "Frank de Jonge",
  2112. "email": "info@frenky.net"
  2113. }
  2114. ],
  2115. "description": "Filesystem abstraction: Many filesystems, one API.",
  2116. "keywords": [
  2117. "Cloud Files",
  2118. "WebDAV",
  2119. "abstraction",
  2120. "aws",
  2121. "cloud",
  2122. "copy.com",
  2123. "dropbox",
  2124. "file systems",
  2125. "files",
  2126. "filesystem",
  2127. "filesystems",
  2128. "ftp",
  2129. "rackspace",
  2130. "remote",
  2131. "s3",
  2132. "sftp",
  2133. "storage"
  2134. ],
  2135. "time": "2019-02-01T08:50:36+00:00"
  2136. },
  2137. {
  2138. "name": "league/flysystem-aws-s3-v3",
  2139. "version": "1.0.22",
  2140. "source": {
  2141. "type": "git",
  2142. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2143. "reference": "883b02c80ca9cd68cf58a9b4b2185beef24b836b"
  2144. },
  2145. "dist": {
  2146. "type": "zip",
  2147. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/883b02c80ca9cd68cf58a9b4b2185beef24b836b",
  2148. "reference": "883b02c80ca9cd68cf58a9b4b2185beef24b836b",
  2149. "shasum": ""
  2150. },
  2151. "require": {
  2152. "aws/aws-sdk-php": "^3.0.0",
  2153. "league/flysystem": "^1.0.40",
  2154. "php": ">=5.5.0"
  2155. },
  2156. "require-dev": {
  2157. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  2158. "phpspec/phpspec": "^2.0.0"
  2159. },
  2160. "type": "library",
  2161. "extra": {
  2162. "branch-alias": {
  2163. "dev-master": "1.0-dev"
  2164. }
  2165. },
  2166. "autoload": {
  2167. "psr-4": {
  2168. "League\\Flysystem\\AwsS3v3\\": "src/"
  2169. }
  2170. },
  2171. "notification-url": "https://packagist.org/downloads/",
  2172. "license": [
  2173. "MIT"
  2174. ],
  2175. "authors": [
  2176. {
  2177. "name": "Frank de Jonge",
  2178. "email": "info@frenky.net"
  2179. }
  2180. ],
  2181. "description": "Flysystem adapter for the AWS S3 SDK v3.x",
  2182. "time": "2019-01-31T15:07:25+00:00"
  2183. },
  2184. {
  2185. "name": "league/flysystem-cached-adapter",
  2186. "version": "1.0.9",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  2190. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
  2195. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
  2196. "shasum": ""
  2197. },
  2198. "require": {
  2199. "league/flysystem": "~1.0",
  2200. "psr/cache": "^1.0.0"
  2201. },
  2202. "require-dev": {
  2203. "mockery/mockery": "~0.9",
  2204. "phpspec/phpspec": "^3.4",
  2205. "phpunit/phpunit": "^5.7",
  2206. "predis/predis": "~1.0",
  2207. "tedivm/stash": "~0.12"
  2208. },
  2209. "suggest": {
  2210. "ext-phpredis": "Pure C implemented extension for PHP"
  2211. },
  2212. "type": "library",
  2213. "autoload": {
  2214. "psr-4": {
  2215. "League\\Flysystem\\Cached\\": "src/"
  2216. }
  2217. },
  2218. "notification-url": "https://packagist.org/downloads/",
  2219. "license": [
  2220. "MIT"
  2221. ],
  2222. "authors": [
  2223. {
  2224. "name": "frankdejonge",
  2225. "email": "info@frenky.net"
  2226. }
  2227. ],
  2228. "description": "An adapter decorator to enable meta-data caching.",
  2229. "time": "2018-07-09T20:51:04+00:00"
  2230. },
  2231. {
  2232. "name": "league/oauth2-server",
  2233. "version": "7.3.2",
  2234. "source": {
  2235. "type": "git",
  2236. "url": "https://github.com/thephpleague/oauth2-server.git",
  2237. "reference": "b71f382cd76e3f6905dfc53ef8148b3eebe1fd41"
  2238. },
  2239. "dist": {
  2240. "type": "zip",
  2241. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/b71f382cd76e3f6905dfc53ef8148b3eebe1fd41",
  2242. "reference": "b71f382cd76e3f6905dfc53ef8148b3eebe1fd41",
  2243. "shasum": ""
  2244. },
  2245. "require": {
  2246. "defuse/php-encryption": "^2.1",
  2247. "ext-openssl": "*",
  2248. "lcobucci/jwt": "^3.2.2",
  2249. "league/event": "^2.1",
  2250. "php": ">=7.0.0",
  2251. "psr/http-message": "^1.0.1"
  2252. },
  2253. "replace": {
  2254. "league/oauth2server": "*",
  2255. "lncd/oauth2": "*"
  2256. },
  2257. "require-dev": {
  2258. "phpstan/phpstan": "^0.9.2",
  2259. "phpstan/phpstan-phpunit": "^0.9.4",
  2260. "phpstan/phpstan-strict-rules": "^0.9.0",
  2261. "phpunit/phpunit": "^6.3 || ^7.0",
  2262. "roave/security-advisories": "dev-master",
  2263. "zendframework/zend-diactoros": "^1.3.2"
  2264. },
  2265. "type": "library",
  2266. "autoload": {
  2267. "psr-4": {
  2268. "League\\OAuth2\\Server\\": "src/"
  2269. }
  2270. },
  2271. "notification-url": "https://packagist.org/downloads/",
  2272. "license": [
  2273. "MIT"
  2274. ],
  2275. "authors": [
  2276. {
  2277. "name": "Alex Bilbie",
  2278. "email": "hello@alexbilbie.com",
  2279. "homepage": "http://www.alexbilbie.com",
  2280. "role": "Developer"
  2281. },
  2282. {
  2283. "name": "Andy Millington",
  2284. "email": "andrew@noexceptions.io",
  2285. "homepage": "https://www.noexceptions.io",
  2286. "role": "Developer"
  2287. }
  2288. ],
  2289. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  2290. "homepage": "https://oauth2.thephpleague.com/",
  2291. "keywords": [
  2292. "Authentication",
  2293. "api",
  2294. "auth",
  2295. "authorisation",
  2296. "authorization",
  2297. "oauth",
  2298. "oauth 2",
  2299. "oauth 2.0",
  2300. "oauth2",
  2301. "protect",
  2302. "resource",
  2303. "secure",
  2304. "server"
  2305. ],
  2306. "time": "2018-11-21T21:42:43+00:00"
  2307. },
  2308. {
  2309. "name": "monolog/monolog",
  2310. "version": "1.24.0",
  2311. "source": {
  2312. "type": "git",
  2313. "url": "https://github.com/Seldaek/monolog.git",
  2314. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  2315. },
  2316. "dist": {
  2317. "type": "zip",
  2318. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2319. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2320. "shasum": ""
  2321. },
  2322. "require": {
  2323. "php": ">=5.3.0",
  2324. "psr/log": "~1.0"
  2325. },
  2326. "provide": {
  2327. "psr/log-implementation": "1.0.0"
  2328. },
  2329. "require-dev": {
  2330. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2331. "doctrine/couchdb": "~1.0@dev",
  2332. "graylog2/gelf-php": "~1.0",
  2333. "jakub-onderka/php-parallel-lint": "0.9",
  2334. "php-amqplib/php-amqplib": "~2.4",
  2335. "php-console/php-console": "^3.1.3",
  2336. "phpunit/phpunit": "~4.5",
  2337. "phpunit/phpunit-mock-objects": "2.3.0",
  2338. "ruflin/elastica": ">=0.90 <3.0",
  2339. "sentry/sentry": "^0.13",
  2340. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2341. },
  2342. "suggest": {
  2343. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2344. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2345. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2346. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2347. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2348. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2349. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2350. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2351. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2352. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2353. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2354. },
  2355. "type": "library",
  2356. "extra": {
  2357. "branch-alias": {
  2358. "dev-master": "2.0.x-dev"
  2359. }
  2360. },
  2361. "autoload": {
  2362. "psr-4": {
  2363. "Monolog\\": "src/Monolog"
  2364. }
  2365. },
  2366. "notification-url": "https://packagist.org/downloads/",
  2367. "license": [
  2368. "MIT"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Jordi Boggiano",
  2373. "email": "j.boggiano@seld.be",
  2374. "homepage": "http://seld.be"
  2375. }
  2376. ],
  2377. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2378. "homepage": "http://github.com/Seldaek/monolog",
  2379. "keywords": [
  2380. "log",
  2381. "logging",
  2382. "psr-3"
  2383. ],
  2384. "time": "2018-11-05T09:00:11+00:00"
  2385. },
  2386. {
  2387. "name": "moontoast/math",
  2388. "version": "1.1.2",
  2389. "source": {
  2390. "type": "git",
  2391. "url": "https://github.com/ramsey/moontoast-math.git",
  2392. "reference": "c2792a25df5cad4ff3d760dd37078fc5b6fccc79"
  2393. },
  2394. "dist": {
  2395. "type": "zip",
  2396. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/c2792a25df5cad4ff3d760dd37078fc5b6fccc79",
  2397. "reference": "c2792a25df5cad4ff3d760dd37078fc5b6fccc79",
  2398. "shasum": ""
  2399. },
  2400. "require": {
  2401. "ext-bcmath": "*",
  2402. "php": ">=5.3.3"
  2403. },
  2404. "require-dev": {
  2405. "jakub-onderka/php-parallel-lint": "^0.9.0",
  2406. "phpunit/phpunit": "^4.7|>=5.0 <5.4",
  2407. "satooshi/php-coveralls": "^0.6.1",
  2408. "squizlabs/php_codesniffer": "^2.3"
  2409. },
  2410. "type": "library",
  2411. "autoload": {
  2412. "psr-4": {
  2413. "Moontoast\\Math\\": "src/Moontoast/Math/"
  2414. }
  2415. },
  2416. "notification-url": "https://packagist.org/downloads/",
  2417. "license": [
  2418. "Apache-2.0"
  2419. ],
  2420. "authors": [
  2421. {
  2422. "name": "Ben Ramsey",
  2423. "email": "ben@benramsey.com",
  2424. "homepage": "https://benramsey.com"
  2425. }
  2426. ],
  2427. "description": "A mathematics library, providing functionality for large numbers",
  2428. "homepage": "https://github.com/ramsey/moontoast-math",
  2429. "keywords": [
  2430. "bcmath",
  2431. "math"
  2432. ],
  2433. "time": "2017-02-16T16:54:46+00:00"
  2434. },
  2435. {
  2436. "name": "mtdowling/jmespath.php",
  2437. "version": "2.4.0",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://github.com/jmespath/jmespath.php.git",
  2441. "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
  2446. "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
  2447. "shasum": ""
  2448. },
  2449. "require": {
  2450. "php": ">=5.4.0"
  2451. },
  2452. "require-dev": {
  2453. "phpunit/phpunit": "~4.0"
  2454. },
  2455. "bin": [
  2456. "bin/jp.php"
  2457. ],
  2458. "type": "library",
  2459. "extra": {
  2460. "branch-alias": {
  2461. "dev-master": "2.0-dev"
  2462. }
  2463. },
  2464. "autoload": {
  2465. "psr-4": {
  2466. "JmesPath\\": "src/"
  2467. },
  2468. "files": [
  2469. "src/JmesPath.php"
  2470. ]
  2471. },
  2472. "notification-url": "https://packagist.org/downloads/",
  2473. "license": [
  2474. "MIT"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "Michael Dowling",
  2479. "email": "mtdowling@gmail.com",
  2480. "homepage": "https://github.com/mtdowling"
  2481. }
  2482. ],
  2483. "description": "Declaratively specify how to extract elements from a JSON document",
  2484. "keywords": [
  2485. "json",
  2486. "jsonpath"
  2487. ],
  2488. "time": "2016-12-03T22:08:25+00:00"
  2489. },
  2490. {
  2491. "name": "nesbot/carbon",
  2492. "version": "2.14.1",
  2493. "source": {
  2494. "type": "git",
  2495. "url": "https://github.com/briannesbitt/Carbon.git",
  2496. "reference": "e68f869575bd703276be8d4264799cd3cce28107"
  2497. },
  2498. "dist": {
  2499. "type": "zip",
  2500. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e68f869575bd703276be8d4264799cd3cce28107",
  2501. "reference": "e68f869575bd703276be8d4264799cd3cce28107",
  2502. "shasum": ""
  2503. },
  2504. "require": {
  2505. "ext-json": "*",
  2506. "php": "^7.1.8 || ^8.0",
  2507. "symfony/translation": "^3.4 || ^4.0"
  2508. },
  2509. "require-dev": {
  2510. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2511. "kylekatarnls/multi-tester": "^0.1",
  2512. "phpmd/phpmd": "^2.6",
  2513. "phpstan/phpstan": "^0.10.8",
  2514. "phpunit/phpunit": "^7.5 || ^8.0",
  2515. "squizlabs/php_codesniffer": "^3.4"
  2516. },
  2517. "type": "library",
  2518. "extra": {
  2519. "laravel": {
  2520. "providers": [
  2521. "Carbon\\Laravel\\ServiceProvider"
  2522. ]
  2523. }
  2524. },
  2525. "autoload": {
  2526. "psr-4": {
  2527. "Carbon\\": "src/Carbon/"
  2528. }
  2529. },
  2530. "notification-url": "https://packagist.org/downloads/",
  2531. "license": [
  2532. "MIT"
  2533. ],
  2534. "authors": [
  2535. {
  2536. "name": "Brian Nesbitt",
  2537. "email": "brian@nesbot.com",
  2538. "homepage": "http://nesbot.com"
  2539. }
  2540. ],
  2541. "description": "A simple API extension for DateTime.",
  2542. "homepage": "http://carbon.nesbot.com",
  2543. "keywords": [
  2544. "date",
  2545. "datetime",
  2546. "time"
  2547. ],
  2548. "time": "2019-02-27T13:59:59+00:00"
  2549. },
  2550. {
  2551. "name": "neutron/temporary-filesystem",
  2552. "version": "2.3.0",
  2553. "source": {
  2554. "type": "git",
  2555. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  2556. "reference": "694aa3885f653dd429584e825ffbab79441d285f"
  2557. },
  2558. "dist": {
  2559. "type": "zip",
  2560. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/694aa3885f653dd429584e825ffbab79441d285f",
  2561. "reference": "694aa3885f653dd429584e825ffbab79441d285f",
  2562. "shasum": ""
  2563. },
  2564. "require": {
  2565. "php": "^5.6 || ^7.0",
  2566. "symfony/filesystem": "^2.3 || ^3.0 || ^4.0"
  2567. },
  2568. "require-dev": {
  2569. "phpunit/phpunit": "^5.0"
  2570. },
  2571. "type": "library",
  2572. "autoload": {
  2573. "psr-0": {
  2574. "Neutron": "src"
  2575. }
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "MIT"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Romain Neutron",
  2584. "email": "imprec@gmail.com"
  2585. }
  2586. ],
  2587. "description": "Symfony filesystem extension to handle temporary files",
  2588. "time": "2018-02-07T21:11:57+00:00"
  2589. },
  2590. {
  2591. "name": "nikic/php-parser",
  2592. "version": "v4.2.1",
  2593. "source": {
  2594. "type": "git",
  2595. "url": "https://github.com/nikic/PHP-Parser.git",
  2596. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  2597. },
  2598. "dist": {
  2599. "type": "zip",
  2600. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  2601. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  2602. "shasum": ""
  2603. },
  2604. "require": {
  2605. "ext-tokenizer": "*",
  2606. "php": ">=7.0"
  2607. },
  2608. "require-dev": {
  2609. "phpunit/phpunit": "^6.5 || ^7.0"
  2610. },
  2611. "bin": [
  2612. "bin/php-parse"
  2613. ],
  2614. "type": "library",
  2615. "extra": {
  2616. "branch-alias": {
  2617. "dev-master": "4.2-dev"
  2618. }
  2619. },
  2620. "autoload": {
  2621. "psr-4": {
  2622. "PhpParser\\": "lib/PhpParser"
  2623. }
  2624. },
  2625. "notification-url": "https://packagist.org/downloads/",
  2626. "license": [
  2627. "BSD-3-Clause"
  2628. ],
  2629. "authors": [
  2630. {
  2631. "name": "Nikita Popov"
  2632. }
  2633. ],
  2634. "description": "A PHP parser written in PHP",
  2635. "keywords": [
  2636. "parser",
  2637. "php"
  2638. ],
  2639. "time": "2019-02-16T20:54:15+00:00"
  2640. },
  2641. {
  2642. "name": "opis/closure",
  2643. "version": "3.1.6",
  2644. "source": {
  2645. "type": "git",
  2646. "url": "https://github.com/opis/closure.git",
  2647. "reference": "ccb8e3928c5c8181c76cdd0ed9366c5bcaafd91b"
  2648. },
  2649. "dist": {
  2650. "type": "zip",
  2651. "url": "https://api.github.com/repos/opis/closure/zipball/ccb8e3928c5c8181c76cdd0ed9366c5bcaafd91b",
  2652. "reference": "ccb8e3928c5c8181c76cdd0ed9366c5bcaafd91b",
  2653. "shasum": ""
  2654. },
  2655. "require": {
  2656. "php": "^5.4 || ^7.0"
  2657. },
  2658. "require-dev": {
  2659. "jeremeamia/superclosure": "^2.0",
  2660. "phpunit/phpunit": "^4.0|^5.0|^6.0|^7.0"
  2661. },
  2662. "type": "library",
  2663. "extra": {
  2664. "branch-alias": {
  2665. "dev-master": "3.1.x-dev"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "psr-4": {
  2670. "Opis\\Closure\\": "src/"
  2671. },
  2672. "files": [
  2673. "functions.php"
  2674. ]
  2675. },
  2676. "notification-url": "https://packagist.org/downloads/",
  2677. "license": [
  2678. "MIT"
  2679. ],
  2680. "authors": [
  2681. {
  2682. "name": "Marius Sarca",
  2683. "email": "marius.sarca@gmail.com"
  2684. },
  2685. {
  2686. "name": "Sorin Sarca",
  2687. "email": "sarca_sorin@hotmail.com"
  2688. }
  2689. ],
  2690. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2691. "homepage": "https://opis.io/closure",
  2692. "keywords": [
  2693. "anonymous functions",
  2694. "closure",
  2695. "function",
  2696. "serializable",
  2697. "serialization",
  2698. "serialize"
  2699. ],
  2700. "time": "2019-02-22T10:30:00+00:00"
  2701. },
  2702. {
  2703. "name": "paragonie/constant_time_encoding",
  2704. "version": "v2.2.3",
  2705. "source": {
  2706. "type": "git",
  2707. "url": "https://github.com/paragonie/constant_time_encoding.git",
  2708. "reference": "55af0dc01992b4d0da7f6372e2eac097bbbaffdb"
  2709. },
  2710. "dist": {
  2711. "type": "zip",
  2712. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/55af0dc01992b4d0da7f6372e2eac097bbbaffdb",
  2713. "reference": "55af0dc01992b4d0da7f6372e2eac097bbbaffdb",
  2714. "shasum": ""
  2715. },
  2716. "require": {
  2717. "php": "^7"
  2718. },
  2719. "require-dev": {
  2720. "phpunit/phpunit": "^6|^7",
  2721. "vimeo/psalm": "^1|^2"
  2722. },
  2723. "type": "library",
  2724. "autoload": {
  2725. "psr-4": {
  2726. "ParagonIE\\ConstantTime\\": "src/"
  2727. }
  2728. },
  2729. "notification-url": "https://packagist.org/downloads/",
  2730. "license": [
  2731. "MIT"
  2732. ],
  2733. "authors": [
  2734. {
  2735. "name": "Paragon Initiative Enterprises",
  2736. "email": "security@paragonie.com",
  2737. "homepage": "https://paragonie.com",
  2738. "role": "Maintainer"
  2739. },
  2740. {
  2741. "name": "Steve 'Sc00bz' Thomas",
  2742. "email": "steve@tobtu.com",
  2743. "homepage": "https://www.tobtu.com",
  2744. "role": "Original Developer"
  2745. }
  2746. ],
  2747. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  2748. "keywords": [
  2749. "base16",
  2750. "base32",
  2751. "base32_decode",
  2752. "base32_encode",
  2753. "base64",
  2754. "base64_decode",
  2755. "base64_encode",
  2756. "bin2hex",
  2757. "encoding",
  2758. "hex",
  2759. "hex2bin",
  2760. "rfc4648"
  2761. ],
  2762. "time": "2019-01-03T20:26:31+00:00"
  2763. },
  2764. {
  2765. "name": "paragonie/random_compat",
  2766. "version": "v2.0.18",
  2767. "source": {
  2768. "type": "git",
  2769. "url": "https://github.com/paragonie/random_compat.git",
  2770. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  2771. },
  2772. "dist": {
  2773. "type": "zip",
  2774. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2775. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2776. "shasum": ""
  2777. },
  2778. "require": {
  2779. "php": ">=5.2.0"
  2780. },
  2781. "require-dev": {
  2782. "phpunit/phpunit": "4.*|5.*"
  2783. },
  2784. "suggest": {
  2785. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2786. },
  2787. "type": "library",
  2788. "autoload": {
  2789. "files": [
  2790. "lib/random.php"
  2791. ]
  2792. },
  2793. "notification-url": "https://packagist.org/downloads/",
  2794. "license": [
  2795. "MIT"
  2796. ],
  2797. "authors": [
  2798. {
  2799. "name": "Paragon Initiative Enterprises",
  2800. "email": "security@paragonie.com",
  2801. "homepage": "https://paragonie.com"
  2802. }
  2803. ],
  2804. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2805. "keywords": [
  2806. "csprng",
  2807. "polyfill",
  2808. "pseudorandom",
  2809. "random"
  2810. ],
  2811. "time": "2019-01-03T20:59:08+00:00"
  2812. },
  2813. {
  2814. "name": "pbmedia/laravel-ffmpeg",
  2815. "version": "4.0.0",
  2816. "source": {
  2817. "type": "git",
  2818. "url": "https://github.com/pascalbaljetmedia/laravel-ffmpeg.git",
  2819. "reference": "6b7ac695b56c3847a736de614d4533245541cb6c"
  2820. },
  2821. "dist": {
  2822. "type": "zip",
  2823. "url": "https://api.github.com/repos/pascalbaljetmedia/laravel-ffmpeg/zipball/6b7ac695b56c3847a736de614d4533245541cb6c",
  2824. "reference": "6b7ac695b56c3847a736de614d4533245541cb6c",
  2825. "shasum": ""
  2826. },
  2827. "require": {
  2828. "illuminate/config": "5.8.*",
  2829. "illuminate/filesystem": "5.8.*",
  2830. "illuminate/log": "5.8.*",
  2831. "illuminate/support": "5.8.*",
  2832. "league/flysystem": "~1.0",
  2833. "php": "^7.1.3",
  2834. "php-ffmpeg/php-ffmpeg": "^0.13",
  2835. "symfony/process": "~4.0"
  2836. },
  2837. "require-dev": {
  2838. "mockery/mockery": "^1.0",
  2839. "phpunit/phpunit": "7.5"
  2840. },
  2841. "type": "library",
  2842. "extra": {
  2843. "laravel": {
  2844. "providers": [
  2845. "Pbmedia\\LaravelFFMpeg\\FFMpegServiceProvider"
  2846. ],
  2847. "aliases": {
  2848. "FFMpeg": "Pbmedia\\LaravelFFMpeg\\FFMpegFacade"
  2849. }
  2850. }
  2851. },
  2852. "autoload": {
  2853. "psr-4": {
  2854. "Pbmedia\\LaravelFFMpeg\\": "src"
  2855. }
  2856. },
  2857. "notification-url": "https://packagist.org/downloads/",
  2858. "license": [
  2859. "MIT"
  2860. ],
  2861. "authors": [
  2862. {
  2863. "name": "Pascal Baljet",
  2864. "email": "pascal@pascalbaljetmedia.com",
  2865. "homepage": "http://www.pascalbaljetmedia.com",
  2866. "role": "Developer"
  2867. }
  2868. ],
  2869. "description": "FFMpeg for Laravel",
  2870. "homepage": "https://github.com/pbmedia/laravel-ffmpeg",
  2871. "keywords": [
  2872. "laravel-ffmpeg",
  2873. "pbmedia"
  2874. ],
  2875. "time": "2019-02-27T17:33:08+00:00"
  2876. },
  2877. {
  2878. "name": "php-ffmpeg/php-ffmpeg",
  2879. "version": "v0.13",
  2880. "source": {
  2881. "type": "git",
  2882. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  2883. "reference": "c11b79ab5b0174aa1a56c54c67491169e78a4c17"
  2884. },
  2885. "dist": {
  2886. "type": "zip",
  2887. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/c11b79ab5b0174aa1a56c54c67491169e78a4c17",
  2888. "reference": "c11b79ab5b0174aa1a56c54c67491169e78a4c17",
  2889. "shasum": ""
  2890. },
  2891. "require": {
  2892. "alchemy/binary-driver": "^1.5 || ~2.0.0",
  2893. "doctrine/cache": "^1.0",
  2894. "evenement/evenement": "^2.0 || ^1.0",
  2895. "neutron/temporary-filesystem": "^2.1.1",
  2896. "php": "^5.3.9 || ^7.0"
  2897. },
  2898. "require-dev": {
  2899. "phpunit/phpunit": "^4.8.36",
  2900. "sami/sami": "~1.0",
  2901. "silex/silex": "~1.0"
  2902. },
  2903. "suggest": {
  2904. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  2905. },
  2906. "type": "library",
  2907. "extra": {
  2908. "branch-alias": {
  2909. "dev-master": "0.7-dev"
  2910. }
  2911. },
  2912. "autoload": {
  2913. "psr-0": {
  2914. "FFMpeg": "src"
  2915. }
  2916. },
  2917. "notification-url": "https://packagist.org/downloads/",
  2918. "license": [
  2919. "MIT"
  2920. ],
  2921. "authors": [
  2922. {
  2923. "name": "Romain Neutron",
  2924. "email": "imprec@gmail.com",
  2925. "homepage": "http://www.lickmychip.com/"
  2926. },
  2927. {
  2928. "name": "Phraseanet Team",
  2929. "email": "info@alchemy.fr",
  2930. "homepage": "http://www.phraseanet.com/"
  2931. },
  2932. {
  2933. "name": "Patrik Karisch",
  2934. "email": "patrik@karisch.guru",
  2935. "homepage": "http://www.karisch.guru"
  2936. },
  2937. {
  2938. "name": "Romain Biard",
  2939. "email": "romain.biard@gmail.com",
  2940. "homepage": "https://www.strime.io/"
  2941. },
  2942. {
  2943. "name": "Jens Hausdorf",
  2944. "email": "hello@jens-hausdorf.de",
  2945. "homepage": "https://jens-hausdorf.de"
  2946. }
  2947. ],
  2948. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  2949. "keywords": [
  2950. "audio",
  2951. "audio processing",
  2952. "avconv",
  2953. "avprobe",
  2954. "ffmpeg",
  2955. "ffprobe",
  2956. "video",
  2957. "video processing"
  2958. ],
  2959. "time": "2018-08-06T20:02:43+00:00"
  2960. },
  2961. {
  2962. "name": "phpoption/phpoption",
  2963. "version": "1.5.0",
  2964. "source": {
  2965. "type": "git",
  2966. "url": "https://github.com/schmittjoh/php-option.git",
  2967. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2968. },
  2969. "dist": {
  2970. "type": "zip",
  2971. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2972. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2973. "shasum": ""
  2974. },
  2975. "require": {
  2976. "php": ">=5.3.0"
  2977. },
  2978. "require-dev": {
  2979. "phpunit/phpunit": "4.7.*"
  2980. },
  2981. "type": "library",
  2982. "extra": {
  2983. "branch-alias": {
  2984. "dev-master": "1.3-dev"
  2985. }
  2986. },
  2987. "autoload": {
  2988. "psr-0": {
  2989. "PhpOption\\": "src/"
  2990. }
  2991. },
  2992. "notification-url": "https://packagist.org/downloads/",
  2993. "license": [
  2994. "Apache2"
  2995. ],
  2996. "authors": [
  2997. {
  2998. "name": "Johannes M. Schmitt",
  2999. "email": "schmittjoh@gmail.com"
  3000. }
  3001. ],
  3002. "description": "Option Type for PHP",
  3003. "keywords": [
  3004. "language",
  3005. "option",
  3006. "php",
  3007. "type"
  3008. ],
  3009. "time": "2015-07-25T16:39:46+00:00"
  3010. },
  3011. {
  3012. "name": "phpseclib/phpseclib",
  3013. "version": "2.0.14",
  3014. "source": {
  3015. "type": "git",
  3016. "url": "https://github.com/phpseclib/phpseclib.git",
  3017. "reference": "8ebfcadbf30524aeb75b2c446bc2519d5b321478"
  3018. },
  3019. "dist": {
  3020. "type": "zip",
  3021. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/8ebfcadbf30524aeb75b2c446bc2519d5b321478",
  3022. "reference": "8ebfcadbf30524aeb75b2c446bc2519d5b321478",
  3023. "shasum": ""
  3024. },
  3025. "require": {
  3026. "php": ">=5.3.3"
  3027. },
  3028. "require-dev": {
  3029. "phing/phing": "~2.7",
  3030. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  3031. "sami/sami": "~2.0",
  3032. "squizlabs/php_codesniffer": "~2.0"
  3033. },
  3034. "suggest": {
  3035. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3036. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3037. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3038. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3039. },
  3040. "type": "library",
  3041. "autoload": {
  3042. "files": [
  3043. "phpseclib/bootstrap.php"
  3044. ],
  3045. "psr-4": {
  3046. "phpseclib\\": "phpseclib/"
  3047. }
  3048. },
  3049. "notification-url": "https://packagist.org/downloads/",
  3050. "license": [
  3051. "MIT"
  3052. ],
  3053. "authors": [
  3054. {
  3055. "name": "Jim Wigginton",
  3056. "email": "terrafrost@php.net",
  3057. "role": "Lead Developer"
  3058. },
  3059. {
  3060. "name": "Patrick Monnerat",
  3061. "email": "pm@datasphere.ch",
  3062. "role": "Developer"
  3063. },
  3064. {
  3065. "name": "Andreas Fischer",
  3066. "email": "bantu@phpbb.com",
  3067. "role": "Developer"
  3068. },
  3069. {
  3070. "name": "Hans-Jürgen Petrich",
  3071. "email": "petrich@tronic-media.com",
  3072. "role": "Developer"
  3073. },
  3074. {
  3075. "name": "Graham Campbell",
  3076. "email": "graham@alt-three.com",
  3077. "role": "Developer"
  3078. }
  3079. ],
  3080. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3081. "homepage": "http://phpseclib.sourceforge.net",
  3082. "keywords": [
  3083. "BigInteger",
  3084. "aes",
  3085. "asn.1",
  3086. "asn1",
  3087. "blowfish",
  3088. "crypto",
  3089. "cryptography",
  3090. "encryption",
  3091. "rsa",
  3092. "security",
  3093. "sftp",
  3094. "signature",
  3095. "signing",
  3096. "ssh",
  3097. "twofish",
  3098. "x.509",
  3099. "x509"
  3100. ],
  3101. "time": "2019-01-27T19:37:29+00:00"
  3102. },
  3103. {
  3104. "name": "pixelfed/bacon-qr-code",
  3105. "version": "3.1.0",
  3106. "source": {
  3107. "type": "git",
  3108. "url": "https://github.com/pixelfed/BaconQrCode.git",
  3109. "reference": "912bb5dba5eea165e500abb8ed36e59971d6d724"
  3110. },
  3111. "dist": {
  3112. "type": "zip",
  3113. "url": "https://api.github.com/repos/pixelfed/BaconQrCode/zipball/912bb5dba5eea165e500abb8ed36e59971d6d724",
  3114. "reference": "912bb5dba5eea165e500abb8ed36e59971d6d724",
  3115. "shasum": ""
  3116. },
  3117. "require": {
  3118. "ext-iconv": "*",
  3119. "php": "^7.1"
  3120. },
  3121. "suggest": {
  3122. "ext-imagick": "to generate QR code images"
  3123. },
  3124. "type": "library",
  3125. "autoload": {
  3126. "psr-4": {
  3127. "BaconQrCode\\": "src/"
  3128. }
  3129. },
  3130. "notification-url": "https://packagist.org/downloads/",
  3131. "license": [
  3132. "BSD-2-Clause"
  3133. ],
  3134. "authors": [
  3135. {
  3136. "name": "Ben Scholzen 'DASPRiD'",
  3137. "email": "mail@dasprids.de",
  3138. "homepage": "http://www.dasprids.de",
  3139. "role": "Developer"
  3140. }
  3141. ],
  3142. "description": "BaconQrCode is a QR code generator for PHP.",
  3143. "homepage": "https://github.com/pixelfed/BaconQrCode",
  3144. "time": "2018-09-03T06:48:07+00:00"
  3145. },
  3146. {
  3147. "name": "pixelfed/dotenv-editor",
  3148. "version": "2.0.0",
  3149. "source": {
  3150. "type": "git",
  3151. "url": "https://github.com/pixelfed/Laravel-Dotenv-Editor.git",
  3152. "reference": "b53cb2707bb856e92cf1a282b4e5ee17a45ccb2c"
  3153. },
  3154. "dist": {
  3155. "type": "zip",
  3156. "url": "https://api.github.com/repos/pixelfed/Laravel-Dotenv-Editor/zipball/b53cb2707bb856e92cf1a282b4e5ee17a45ccb2c",
  3157. "reference": "b53cb2707bb856e92cf1a282b4e5ee17a45ccb2c",
  3158. "shasum": ""
  3159. },
  3160. "require": {
  3161. "illuminate/config": ">=5.0",
  3162. "illuminate/container": ">=5.0",
  3163. "illuminate/support": ">=5.0",
  3164. "php": ">=5.4.0"
  3165. },
  3166. "type": "library",
  3167. "extra": {
  3168. "branch-alias": {
  3169. "dev-master": "1.0-dev"
  3170. }
  3171. },
  3172. "autoload": {
  3173. "psr-4": {
  3174. "Jackiedo\\DotenvEditor\\": "src/Jackiedo/DotenvEditor"
  3175. }
  3176. },
  3177. "notification-url": "https://packagist.org/downloads/",
  3178. "license": [
  3179. "MIT"
  3180. ],
  3181. "authors": [
  3182. {
  3183. "name": "Jackie Do",
  3184. "email": "anhvudo@gmail.com"
  3185. }
  3186. ],
  3187. "description": "The .env file editor tool for Laravel 5+",
  3188. "keywords": [
  3189. "dotenv",
  3190. "dotenv-editor",
  3191. "laravel"
  3192. ],
  3193. "time": "2018-07-17T19:38:26+00:00"
  3194. },
  3195. {
  3196. "name": "pixelfed/fractal",
  3197. "version": "0.18.0",
  3198. "source": {
  3199. "type": "git",
  3200. "url": "https://github.com/pixelfed/fractal.git",
  3201. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782"
  3202. },
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://api.github.com/repos/pixelfed/fractal/zipball/faff10c9f3e3300b1571ef41926f933a9cce4782",
  3206. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782",
  3207. "shasum": ""
  3208. },
  3209. "require": {
  3210. "php": ">=5.4"
  3211. },
  3212. "require-dev": {
  3213. "doctrine/orm": "^2.5",
  3214. "illuminate/contracts": "~5.0",
  3215. "mockery/mockery": "~0.9",
  3216. "pagerfanta/pagerfanta": "~1.0.0",
  3217. "phpunit/phpunit": "^4.8.35",
  3218. "squizlabs/php_codesniffer": "~1.5",
  3219. "zendframework/zend-paginator": "~2.3"
  3220. },
  3221. "suggest": {
  3222. "illuminate/pagination": "The Illuminate Pagination component.",
  3223. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3224. "zendframework/zend-paginator": "Zend Framework Paginator"
  3225. },
  3226. "type": "library",
  3227. "extra": {
  3228. "branch-alias": {
  3229. "dev-master": "0.13-dev"
  3230. }
  3231. },
  3232. "autoload": {
  3233. "psr-4": {
  3234. "League\\Fractal\\": "src"
  3235. }
  3236. },
  3237. "notification-url": "https://packagist.org/downloads/",
  3238. "license": [
  3239. "MIT"
  3240. ],
  3241. "authors": [
  3242. {
  3243. "name": "Phil Sturgeon",
  3244. "email": "me@philsturgeon.uk",
  3245. "homepage": "http://philsturgeon.uk/",
  3246. "role": "Developer"
  3247. }
  3248. ],
  3249. "description": "Handle the output of complex data structures ready for API output.",
  3250. "homepage": "http://fractal.thephpleague.com/",
  3251. "keywords": [
  3252. "api",
  3253. "json",
  3254. "league",
  3255. "rest"
  3256. ],
  3257. "time": "2018-07-01T02:30:24+00:00"
  3258. },
  3259. {
  3260. "name": "pixelfed/google2fa",
  3261. "version": "v4.0.0",
  3262. "source": {
  3263. "type": "git",
  3264. "url": "https://github.com/pixelfed/google2fa.git",
  3265. "reference": "919ecec68074a27818451d8653029773a2391fe5"
  3266. },
  3267. "dist": {
  3268. "type": "zip",
  3269. "url": "https://api.github.com/repos/pixelfed/google2fa/zipball/919ecec68074a27818451d8653029773a2391fe5",
  3270. "reference": "919ecec68074a27818451d8653029773a2391fe5",
  3271. "shasum": ""
  3272. },
  3273. "require": {
  3274. "paragonie/constant_time_encoding": "~1.0|~2.0",
  3275. "paragonie/random_compat": "~1.4|~2.0",
  3276. "php": ">=5.4",
  3277. "symfony/polyfill-php56": "~1.2"
  3278. },
  3279. "require-dev": {
  3280. "bacon/bacon-qr-code": "~1.0",
  3281. "phpunit/phpunit": "~4|~5|~6"
  3282. },
  3283. "suggest": {
  3284. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  3285. },
  3286. "type": "library",
  3287. "extra": {
  3288. "component": "package",
  3289. "branch-alias": {
  3290. "dev-master": "2.0-dev"
  3291. }
  3292. },
  3293. "autoload": {
  3294. "psr-4": {
  3295. "PragmaRX\\Google2FA\\": "src/",
  3296. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  3297. }
  3298. },
  3299. "notification-url": "https://packagist.org/downloads/",
  3300. "license": [
  3301. "MIT"
  3302. ],
  3303. "authors": [
  3304. {
  3305. "name": "Antonio Carlos Ribeiro",
  3306. "email": "acr@antoniocarlosribeiro.com",
  3307. "role": "Creator & Designer"
  3308. }
  3309. ],
  3310. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  3311. "keywords": [
  3312. "2fa",
  3313. "Authentication",
  3314. "Two Factor Authentication",
  3315. "google2fa",
  3316. "laravel"
  3317. ],
  3318. "time": "2018-07-05T03:38:31+00:00"
  3319. },
  3320. {
  3321. "name": "pixelfed/zttp",
  3322. "version": "v0.4.1",
  3323. "source": {
  3324. "type": "git",
  3325. "url": "https://github.com/pixelfed/zttp.git",
  3326. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05"
  3327. },
  3328. "dist": {
  3329. "type": "zip",
  3330. "url": "https://api.github.com/repos/pixelfed/zttp/zipball/9a95a42716eb3e71a0a88411805737965bb77c05",
  3331. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05",
  3332. "shasum": ""
  3333. },
  3334. "require": {
  3335. "guzzlehttp/guzzle": "^6.0",
  3336. "php": ">=7.0",
  3337. "tightenco/collect": "^5.4"
  3338. },
  3339. "require-dev": {
  3340. "laravel/lumen-framework": "5.5.*",
  3341. "phpunit/phpunit": "^6.0"
  3342. },
  3343. "type": "library",
  3344. "autoload": {
  3345. "files": [
  3346. "src/Zttp.php"
  3347. ]
  3348. },
  3349. "notification-url": "https://packagist.org/downloads/",
  3350. "license": [
  3351. "MIT"
  3352. ],
  3353. "authors": [
  3354. {
  3355. "name": "Adam Wathan",
  3356. "email": "adam.wathan@gmail.com"
  3357. }
  3358. ],
  3359. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  3360. "keywords": [
  3361. "Guzzle",
  3362. "http"
  3363. ],
  3364. "time": "2018-07-30T05:04:42+00:00"
  3365. },
  3366. {
  3367. "name": "predis/predis",
  3368. "version": "v1.1.1",
  3369. "source": {
  3370. "type": "git",
  3371. "url": "https://github.com/nrk/predis.git",
  3372. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  3373. },
  3374. "dist": {
  3375. "type": "zip",
  3376. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  3377. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  3378. "shasum": ""
  3379. },
  3380. "require": {
  3381. "php": ">=5.3.9"
  3382. },
  3383. "require-dev": {
  3384. "phpunit/phpunit": "~4.8"
  3385. },
  3386. "suggest": {
  3387. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3388. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3389. },
  3390. "type": "library",
  3391. "autoload": {
  3392. "psr-4": {
  3393. "Predis\\": "src/"
  3394. }
  3395. },
  3396. "notification-url": "https://packagist.org/downloads/",
  3397. "license": [
  3398. "MIT"
  3399. ],
  3400. "authors": [
  3401. {
  3402. "name": "Daniele Alessandri",
  3403. "email": "suppakilla@gmail.com",
  3404. "homepage": "http://clorophilla.net"
  3405. }
  3406. ],
  3407. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3408. "homepage": "http://github.com/nrk/predis",
  3409. "keywords": [
  3410. "nosql",
  3411. "predis",
  3412. "redis"
  3413. ],
  3414. "time": "2016-06-16T16:22:20+00:00"
  3415. },
  3416. {
  3417. "name": "psr/cache",
  3418. "version": "1.0.1",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/php-fig/cache.git",
  3422. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3427. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3428. "shasum": ""
  3429. },
  3430. "require": {
  3431. "php": ">=5.3.0"
  3432. },
  3433. "type": "library",
  3434. "extra": {
  3435. "branch-alias": {
  3436. "dev-master": "1.0.x-dev"
  3437. }
  3438. },
  3439. "autoload": {
  3440. "psr-4": {
  3441. "Psr\\Cache\\": "src/"
  3442. }
  3443. },
  3444. "notification-url": "https://packagist.org/downloads/",
  3445. "license": [
  3446. "MIT"
  3447. ],
  3448. "authors": [
  3449. {
  3450. "name": "PHP-FIG",
  3451. "homepage": "http://www.php-fig.org/"
  3452. }
  3453. ],
  3454. "description": "Common interface for caching libraries",
  3455. "keywords": [
  3456. "cache",
  3457. "psr",
  3458. "psr-6"
  3459. ],
  3460. "time": "2016-08-06T20:24:11+00:00"
  3461. },
  3462. {
  3463. "name": "psr/container",
  3464. "version": "1.0.0",
  3465. "source": {
  3466. "type": "git",
  3467. "url": "https://github.com/php-fig/container.git",
  3468. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3469. },
  3470. "dist": {
  3471. "type": "zip",
  3472. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3473. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3474. "shasum": ""
  3475. },
  3476. "require": {
  3477. "php": ">=5.3.0"
  3478. },
  3479. "type": "library",
  3480. "extra": {
  3481. "branch-alias": {
  3482. "dev-master": "1.0.x-dev"
  3483. }
  3484. },
  3485. "autoload": {
  3486. "psr-4": {
  3487. "Psr\\Container\\": "src/"
  3488. }
  3489. },
  3490. "notification-url": "https://packagist.org/downloads/",
  3491. "license": [
  3492. "MIT"
  3493. ],
  3494. "authors": [
  3495. {
  3496. "name": "PHP-FIG",
  3497. "homepage": "http://www.php-fig.org/"
  3498. }
  3499. ],
  3500. "description": "Common Container Interface (PHP FIG PSR-11)",
  3501. "homepage": "https://github.com/php-fig/container",
  3502. "keywords": [
  3503. "PSR-11",
  3504. "container",
  3505. "container-interface",
  3506. "container-interop",
  3507. "psr"
  3508. ],
  3509. "time": "2017-02-14T16:28:37+00:00"
  3510. },
  3511. {
  3512. "name": "psr/http-message",
  3513. "version": "1.0.1",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/php-fig/http-message.git",
  3517. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3522. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3523. "shasum": ""
  3524. },
  3525. "require": {
  3526. "php": ">=5.3.0"
  3527. },
  3528. "type": "library",
  3529. "extra": {
  3530. "branch-alias": {
  3531. "dev-master": "1.0.x-dev"
  3532. }
  3533. },
  3534. "autoload": {
  3535. "psr-4": {
  3536. "Psr\\Http\\Message\\": "src/"
  3537. }
  3538. },
  3539. "notification-url": "https://packagist.org/downloads/",
  3540. "license": [
  3541. "MIT"
  3542. ],
  3543. "authors": [
  3544. {
  3545. "name": "PHP-FIG",
  3546. "homepage": "http://www.php-fig.org/"
  3547. }
  3548. ],
  3549. "description": "Common interface for HTTP messages",
  3550. "homepage": "https://github.com/php-fig/http-message",
  3551. "keywords": [
  3552. "http",
  3553. "http-message",
  3554. "psr",
  3555. "psr-7",
  3556. "request",
  3557. "response"
  3558. ],
  3559. "time": "2016-08-06T14:39:51+00:00"
  3560. },
  3561. {
  3562. "name": "psr/log",
  3563. "version": "1.1.0",
  3564. "source": {
  3565. "type": "git",
  3566. "url": "https://github.com/php-fig/log.git",
  3567. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  3568. },
  3569. "dist": {
  3570. "type": "zip",
  3571. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3572. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3573. "shasum": ""
  3574. },
  3575. "require": {
  3576. "php": ">=5.3.0"
  3577. },
  3578. "type": "library",
  3579. "extra": {
  3580. "branch-alias": {
  3581. "dev-master": "1.0.x-dev"
  3582. }
  3583. },
  3584. "autoload": {
  3585. "psr-4": {
  3586. "Psr\\Log\\": "Psr/Log/"
  3587. }
  3588. },
  3589. "notification-url": "https://packagist.org/downloads/",
  3590. "license": [
  3591. "MIT"
  3592. ],
  3593. "authors": [
  3594. {
  3595. "name": "PHP-FIG",
  3596. "homepage": "http://www.php-fig.org/"
  3597. }
  3598. ],
  3599. "description": "Common interface for logging libraries",
  3600. "homepage": "https://github.com/php-fig/log",
  3601. "keywords": [
  3602. "log",
  3603. "psr",
  3604. "psr-3"
  3605. ],
  3606. "time": "2018-11-20T15:27:04+00:00"
  3607. },
  3608. {
  3609. "name": "psr/simple-cache",
  3610. "version": "1.0.1",
  3611. "source": {
  3612. "type": "git",
  3613. "url": "https://github.com/php-fig/simple-cache.git",
  3614. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3615. },
  3616. "dist": {
  3617. "type": "zip",
  3618. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3619. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3620. "shasum": ""
  3621. },
  3622. "require": {
  3623. "php": ">=5.3.0"
  3624. },
  3625. "type": "library",
  3626. "extra": {
  3627. "branch-alias": {
  3628. "dev-master": "1.0.x-dev"
  3629. }
  3630. },
  3631. "autoload": {
  3632. "psr-4": {
  3633. "Psr\\SimpleCache\\": "src/"
  3634. }
  3635. },
  3636. "notification-url": "https://packagist.org/downloads/",
  3637. "license": [
  3638. "MIT"
  3639. ],
  3640. "authors": [
  3641. {
  3642. "name": "PHP-FIG",
  3643. "homepage": "http://www.php-fig.org/"
  3644. }
  3645. ],
  3646. "description": "Common interfaces for simple caching",
  3647. "keywords": [
  3648. "cache",
  3649. "caching",
  3650. "psr",
  3651. "psr-16",
  3652. "simple-cache"
  3653. ],
  3654. "time": "2017-10-23T01:57:42+00:00"
  3655. },
  3656. {
  3657. "name": "psy/psysh",
  3658. "version": "v0.9.9",
  3659. "source": {
  3660. "type": "git",
  3661. "url": "https://github.com/bobthecow/psysh.git",
  3662. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  3663. },
  3664. "dist": {
  3665. "type": "zip",
  3666. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  3667. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  3668. "shasum": ""
  3669. },
  3670. "require": {
  3671. "dnoegel/php-xdg-base-dir": "0.1",
  3672. "ext-json": "*",
  3673. "ext-tokenizer": "*",
  3674. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3675. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  3676. "php": ">=5.4.0",
  3677. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  3678. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  3679. },
  3680. "require-dev": {
  3681. "bamarni/composer-bin-plugin": "^1.2",
  3682. "hoa/console": "~2.15|~3.16",
  3683. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  3684. },
  3685. "suggest": {
  3686. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3687. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3688. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3689. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3690. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3691. },
  3692. "bin": [
  3693. "bin/psysh"
  3694. ],
  3695. "type": "library",
  3696. "extra": {
  3697. "branch-alias": {
  3698. "dev-develop": "0.9.x-dev"
  3699. }
  3700. },
  3701. "autoload": {
  3702. "files": [
  3703. "src/functions.php"
  3704. ],
  3705. "psr-4": {
  3706. "Psy\\": "src/"
  3707. }
  3708. },
  3709. "notification-url": "https://packagist.org/downloads/",
  3710. "license": [
  3711. "MIT"
  3712. ],
  3713. "authors": [
  3714. {
  3715. "name": "Justin Hileman",
  3716. "email": "justin@justinhileman.info",
  3717. "homepage": "http://justinhileman.com"
  3718. }
  3719. ],
  3720. "description": "An interactive shell for modern PHP.",
  3721. "homepage": "http://psysh.org",
  3722. "keywords": [
  3723. "REPL",
  3724. "console",
  3725. "interactive",
  3726. "shell"
  3727. ],
  3728. "time": "2018-10-13T15:16:03+00:00"
  3729. },
  3730. {
  3731. "name": "ralouphie/getallheaders",
  3732. "version": "2.0.5",
  3733. "source": {
  3734. "type": "git",
  3735. "url": "https://github.com/ralouphie/getallheaders.git",
  3736. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  3737. },
  3738. "dist": {
  3739. "type": "zip",
  3740. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3741. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3742. "shasum": ""
  3743. },
  3744. "require": {
  3745. "php": ">=5.3"
  3746. },
  3747. "require-dev": {
  3748. "phpunit/phpunit": "~3.7.0",
  3749. "satooshi/php-coveralls": ">=1.0"
  3750. },
  3751. "type": "library",
  3752. "autoload": {
  3753. "files": [
  3754. "src/getallheaders.php"
  3755. ]
  3756. },
  3757. "notification-url": "https://packagist.org/downloads/",
  3758. "license": [
  3759. "MIT"
  3760. ],
  3761. "authors": [
  3762. {
  3763. "name": "Ralph Khattar",
  3764. "email": "ralph.khattar@gmail.com"
  3765. }
  3766. ],
  3767. "description": "A polyfill for getallheaders.",
  3768. "time": "2016-02-11T07:05:27+00:00"
  3769. },
  3770. {
  3771. "name": "ramsey/uuid",
  3772. "version": "3.8.0",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://github.com/ramsey/uuid.git",
  3776. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  3781. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  3782. "shasum": ""
  3783. },
  3784. "require": {
  3785. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  3786. "php": "^5.4 || ^7.0",
  3787. "symfony/polyfill-ctype": "^1.8"
  3788. },
  3789. "replace": {
  3790. "rhumsaa/uuid": "self.version"
  3791. },
  3792. "require-dev": {
  3793. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  3794. "doctrine/annotations": "~1.2.0",
  3795. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  3796. "ircmaxell/random-lib": "^1.1",
  3797. "jakub-onderka/php-parallel-lint": "^0.9.0",
  3798. "mockery/mockery": "^0.9.9",
  3799. "moontoast/math": "^1.1",
  3800. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  3801. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  3802. "squizlabs/php_codesniffer": "^2.3"
  3803. },
  3804. "suggest": {
  3805. "ext-ctype": "Provides support for PHP Ctype functions",
  3806. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  3807. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  3808. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3809. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  3810. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  3811. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3812. },
  3813. "type": "library",
  3814. "extra": {
  3815. "branch-alias": {
  3816. "dev-master": "3.x-dev"
  3817. }
  3818. },
  3819. "autoload": {
  3820. "psr-4": {
  3821. "Ramsey\\Uuid\\": "src/"
  3822. }
  3823. },
  3824. "notification-url": "https://packagist.org/downloads/",
  3825. "license": [
  3826. "MIT"
  3827. ],
  3828. "authors": [
  3829. {
  3830. "name": "Marijn Huizendveld",
  3831. "email": "marijn.huizendveld@gmail.com"
  3832. },
  3833. {
  3834. "name": "Thibaud Fabre",
  3835. "email": "thibaud@aztech.io"
  3836. },
  3837. {
  3838. "name": "Ben Ramsey",
  3839. "email": "ben@benramsey.com",
  3840. "homepage": "https://benramsey.com"
  3841. }
  3842. ],
  3843. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  3844. "homepage": "https://github.com/ramsey/uuid",
  3845. "keywords": [
  3846. "guid",
  3847. "identifier",
  3848. "uuid"
  3849. ],
  3850. "time": "2018-07-19T23:38:55+00:00"
  3851. },
  3852. {
  3853. "name": "spatie/db-dumper",
  3854. "version": "2.12.0",
  3855. "source": {
  3856. "type": "git",
  3857. "url": "https://github.com/spatie/db-dumper.git",
  3858. "reference": "61cf73e3b53e163d6e888a0013b9df6bb235752c"
  3859. },
  3860. "dist": {
  3861. "type": "zip",
  3862. "url": "https://api.github.com/repos/spatie/db-dumper/zipball/61cf73e3b53e163d6e888a0013b9df6bb235752c",
  3863. "reference": "61cf73e3b53e163d6e888a0013b9df6bb235752c",
  3864. "shasum": ""
  3865. },
  3866. "require": {
  3867. "php": "^7.0",
  3868. "symfony/process": "^3.0|^4.0"
  3869. },
  3870. "require-dev": {
  3871. "phpunit/phpunit": "^6.0"
  3872. },
  3873. "type": "library",
  3874. "autoload": {
  3875. "psr-4": {
  3876. "Spatie\\DbDumper\\": "src"
  3877. }
  3878. },
  3879. "notification-url": "https://packagist.org/downloads/",
  3880. "license": [
  3881. "MIT"
  3882. ],
  3883. "authors": [
  3884. {
  3885. "name": "Freek Van der Herten",
  3886. "email": "freek@spatie.be",
  3887. "homepage": "https://spatie.be",
  3888. "role": "Developer"
  3889. }
  3890. ],
  3891. "description": "Dump databases",
  3892. "homepage": "https://github.com/spatie/db-dumper",
  3893. "keywords": [
  3894. "database",
  3895. "db-dumper",
  3896. "dump",
  3897. "mysqldump",
  3898. "spatie"
  3899. ],
  3900. "time": "2018-12-10T10:41:18+00:00"
  3901. },
  3902. {
  3903. "name": "spatie/image-optimizer",
  3904. "version": "1.1.5",
  3905. "source": {
  3906. "type": "git",
  3907. "url": "https://github.com/spatie/image-optimizer.git",
  3908. "reference": "e62f8b459bee0a880c8976c316e82638a74510b5"
  3909. },
  3910. "dist": {
  3911. "type": "zip",
  3912. "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/e62f8b459bee0a880c8976c316e82638a74510b5",
  3913. "reference": "e62f8b459bee0a880c8976c316e82638a74510b5",
  3914. "shasum": ""
  3915. },
  3916. "require": {
  3917. "ext-fileinfo": "*",
  3918. "php": "^7.2",
  3919. "psr/log": "^1.0",
  3920. "symfony/process": "^4.2"
  3921. },
  3922. "require-dev": {
  3923. "phpunit/phpunit": "^8.0",
  3924. "symfony/var-dumper": "^4.2"
  3925. },
  3926. "type": "library",
  3927. "autoload": {
  3928. "psr-4": {
  3929. "Spatie\\ImageOptimizer\\": "src"
  3930. }
  3931. },
  3932. "notification-url": "https://packagist.org/downloads/",
  3933. "license": [
  3934. "MIT"
  3935. ],
  3936. "authors": [
  3937. {
  3938. "name": "Freek Van der Herten",
  3939. "email": "freek@spatie.be",
  3940. "homepage": "https://spatie.be",
  3941. "role": "Developer"
  3942. }
  3943. ],
  3944. "description": "Easily optimize images using PHP",
  3945. "homepage": "https://github.com/spatie/image-optimizer",
  3946. "keywords": [
  3947. "image-optimizer",
  3948. "spatie"
  3949. ],
  3950. "time": "2019-02-15T12:11:38+00:00"
  3951. },
  3952. {
  3953. "name": "spatie/laravel-backup",
  3954. "version": "6.1.1",
  3955. "source": {
  3956. "type": "git",
  3957. "url": "https://github.com/spatie/laravel-backup.git",
  3958. "reference": "aea866d7a66b503365a3bdf07fbeea3babb87707"
  3959. },
  3960. "dist": {
  3961. "type": "zip",
  3962. "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/aea866d7a66b503365a3bdf07fbeea3babb87707",
  3963. "reference": "aea866d7a66b503365a3bdf07fbeea3babb87707",
  3964. "shasum": ""
  3965. },
  3966. "require": {
  3967. "illuminate/console": "~5.8.0",
  3968. "illuminate/contracts": "~5.8.0",
  3969. "illuminate/events": "~5.8.0",
  3970. "illuminate/filesystem": "~5.8.0",
  3971. "illuminate/notifications": "~5.8.0",
  3972. "illuminate/support": "~5.8.0",
  3973. "league/flysystem": "^1.0.49",
  3974. "php": "^7.2",
  3975. "spatie/db-dumper": "^2.12",
  3976. "spatie/temporary-directory": "^1.1",
  3977. "symfony/finder": "^4.2"
  3978. },
  3979. "require-dev": {
  3980. "laravel/slack-notification-channel": "^1.0",
  3981. "mockery/mockery": "^1.0",
  3982. "orchestra/testbench": "~3.8.0",
  3983. "phpunit/phpunit": "^8.0"
  3984. },
  3985. "suggest": {
  3986. "laravel/slack-notification-channel": "Required for sending notifications via Slack"
  3987. },
  3988. "type": "library",
  3989. "extra": {
  3990. "laravel": {
  3991. "providers": [
  3992. "Spatie\\Backup\\BackupServiceProvider"
  3993. ]
  3994. }
  3995. },
  3996. "autoload": {
  3997. "psr-4": {
  3998. "Spatie\\Backup\\": "src"
  3999. },
  4000. "files": [
  4001. "src/Helpers/functions.php"
  4002. ]
  4003. },
  4004. "notification-url": "https://packagist.org/downloads/",
  4005. "license": [
  4006. "MIT"
  4007. ],
  4008. "authors": [
  4009. {
  4010. "name": "Freek Van der Herten",
  4011. "email": "freek@spatie.be",
  4012. "homepage": "https://spatie.be",
  4013. "role": "Developer"
  4014. }
  4015. ],
  4016. "description": "A Laravel package to backup your application",
  4017. "homepage": "https://github.com/spatie/laravel-backup",
  4018. "keywords": [
  4019. "backup",
  4020. "database",
  4021. "laravel-backup",
  4022. "spatie"
  4023. ],
  4024. "time": "2019-02-27T15:34:30+00:00"
  4025. },
  4026. {
  4027. "name": "spatie/laravel-image-optimizer",
  4028. "version": "1.4.0",
  4029. "source": {
  4030. "type": "git",
  4031. "url": "https://github.com/spatie/laravel-image-optimizer.git",
  4032. "reference": "ab2f78c9ce6ddff6aad9b8e377f7e84a5906d12d"
  4033. },
  4034. "dist": {
  4035. "type": "zip",
  4036. "url": "https://api.github.com/repos/spatie/laravel-image-optimizer/zipball/ab2f78c9ce6ddff6aad9b8e377f7e84a5906d12d",
  4037. "reference": "ab2f78c9ce6ddff6aad9b8e377f7e84a5906d12d",
  4038. "shasum": ""
  4039. },
  4040. "require": {
  4041. "laravel/framework": "~5.7.0|~5.8.0",
  4042. "php": "^7.2",
  4043. "spatie/image-optimizer": "^1.1.0"
  4044. },
  4045. "require-dev": {
  4046. "orchestra/testbench": "~3.7.0|~3.8.0",
  4047. "phpunit/phpunit": "^8.0"
  4048. },
  4049. "type": "library",
  4050. "extra": {
  4051. "laravel": {
  4052. "providers": [
  4053. "Spatie\\LaravelImageOptimizer\\ImageOptimizerServiceProvider"
  4054. ],
  4055. "aliases": {
  4056. "ImageOptimizer": "Spatie\\LaravelImageOptimizer\\Facades\\ImageOptimizer"
  4057. }
  4058. }
  4059. },
  4060. "autoload": {
  4061. "psr-4": {
  4062. "Spatie\\LaravelImageOptimizer\\": "src"
  4063. }
  4064. },
  4065. "notification-url": "https://packagist.org/downloads/",
  4066. "license": [
  4067. "MIT"
  4068. ],
  4069. "authors": [
  4070. {
  4071. "name": "Freek Van der Herten",
  4072. "email": "freek@spatie.be",
  4073. "homepage": "https://spatie.be",
  4074. "role": "Developer"
  4075. }
  4076. ],
  4077. "description": "Optimize images in your Laravel app",
  4078. "homepage": "https://github.com/spatie/laravel-image-optimizer",
  4079. "keywords": [
  4080. "laravel-image-optimizer",
  4081. "spatie"
  4082. ],
  4083. "time": "2019-02-27T10:14:49+00:00"
  4084. },
  4085. {
  4086. "name": "spatie/temporary-directory",
  4087. "version": "1.1.4",
  4088. "source": {
  4089. "type": "git",
  4090. "url": "https://github.com/spatie/temporary-directory.git",
  4091. "reference": "5e1799fa2297363ebfb4df296fea90afbd4ef9b7"
  4092. },
  4093. "dist": {
  4094. "type": "zip",
  4095. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/5e1799fa2297363ebfb4df296fea90afbd4ef9b7",
  4096. "reference": "5e1799fa2297363ebfb4df296fea90afbd4ef9b7",
  4097. "shasum": ""
  4098. },
  4099. "require": {
  4100. "php": "^7.0"
  4101. },
  4102. "require-dev": {
  4103. "phpunit/phpunit": "^6.3"
  4104. },
  4105. "type": "library",
  4106. "autoload": {
  4107. "psr-4": {
  4108. "Spatie\\TemporaryDirectory\\": "src"
  4109. }
  4110. },
  4111. "notification-url": "https://packagist.org/downloads/",
  4112. "license": [
  4113. "MIT"
  4114. ],
  4115. "authors": [
  4116. {
  4117. "name": "Alex Vanderbist",
  4118. "email": "alex@spatie.be",
  4119. "homepage": "https://spatie.be",
  4120. "role": "Developer"
  4121. }
  4122. ],
  4123. "description": "Easily create, use and destroy temporary directories",
  4124. "homepage": "https://github.com/spatie/temporary-directory",
  4125. "keywords": [
  4126. "spatie",
  4127. "temporary-directory"
  4128. ],
  4129. "time": "2018-04-12T09:34:43+00:00"
  4130. },
  4131. {
  4132. "name": "stevebauman/purify",
  4133. "version": "v2.0.1",
  4134. "source": {
  4135. "type": "git",
  4136. "url": "https://github.com/stevebauman/purify.git",
  4137. "reference": "afa35ae387717520493dbd189f67b5267fffca85"
  4138. },
  4139. "dist": {
  4140. "type": "zip",
  4141. "url": "https://api.github.com/repos/stevebauman/purify/zipball/afa35ae387717520493dbd189f67b5267fffca85",
  4142. "reference": "afa35ae387717520493dbd189f67b5267fffca85",
  4143. "shasum": ""
  4144. },
  4145. "require": {
  4146. "ezyang/htmlpurifier": "^4.9.0",
  4147. "illuminate/support": "5.*",
  4148. "php": ">=5.4.0"
  4149. },
  4150. "require-dev": {
  4151. "orchestra/testbench": "~3.0"
  4152. },
  4153. "type": "library",
  4154. "extra": {
  4155. "laravel": {
  4156. "providers": [
  4157. "Stevebauman\\Purify\\PurifyServiceProvider"
  4158. ],
  4159. "aliases": {
  4160. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  4161. }
  4162. }
  4163. },
  4164. "autoload": {
  4165. "psr-4": {
  4166. "Stevebauman\\Purify\\": "src/"
  4167. }
  4168. },
  4169. "notification-url": "https://packagist.org/downloads/",
  4170. "license": [
  4171. "MIT"
  4172. ],
  4173. "authors": [
  4174. {
  4175. "name": "Steve Bauman",
  4176. "email": "steven_bauman@outlook.com"
  4177. }
  4178. ],
  4179. "description": "An HTML Purifier / Sanitizer for Laravel",
  4180. "keywords": [
  4181. "Purifier",
  4182. "clean",
  4183. "cleaner",
  4184. "html",
  4185. "laravel",
  4186. "purification",
  4187. "purify"
  4188. ],
  4189. "time": "2018-01-24T21:50:40+00:00"
  4190. },
  4191. {
  4192. "name": "swiftmailer/swiftmailer",
  4193. "version": "v6.1.3",
  4194. "source": {
  4195. "type": "git",
  4196. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4197. "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4"
  4198. },
  4199. "dist": {
  4200. "type": "zip",
  4201. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8ddcb66ac10c392d3beb54829eef8ac1438595f4",
  4202. "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4",
  4203. "shasum": ""
  4204. },
  4205. "require": {
  4206. "egulias/email-validator": "~2.0",
  4207. "php": ">=7.0.0"
  4208. },
  4209. "require-dev": {
  4210. "mockery/mockery": "~0.9.1",
  4211. "symfony/phpunit-bridge": "~3.3@dev"
  4212. },
  4213. "suggest": {
  4214. "ext-intl": "Needed to support internationalized email addresses",
  4215. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  4216. },
  4217. "type": "library",
  4218. "extra": {
  4219. "branch-alias": {
  4220. "dev-master": "6.1-dev"
  4221. }
  4222. },
  4223. "autoload": {
  4224. "files": [
  4225. "lib/swift_required.php"
  4226. ]
  4227. },
  4228. "notification-url": "https://packagist.org/downloads/",
  4229. "license": [
  4230. "MIT"
  4231. ],
  4232. "authors": [
  4233. {
  4234. "name": "Chris Corbyn"
  4235. },
  4236. {
  4237. "name": "Fabien Potencier",
  4238. "email": "fabien@symfony.com"
  4239. }
  4240. ],
  4241. "description": "Swiftmailer, free feature-rich PHP mailer",
  4242. "homepage": "https://swiftmailer.symfony.com",
  4243. "keywords": [
  4244. "email",
  4245. "mail",
  4246. "mailer"
  4247. ],
  4248. "time": "2018-09-11T07:12:52+00:00"
  4249. },
  4250. {
  4251. "name": "symfony/console",
  4252. "version": "v4.2.3",
  4253. "source": {
  4254. "type": "git",
  4255. "url": "https://github.com/symfony/console.git",
  4256. "reference": "1f0ad51dfde4da8a6070f06adc58b4e37cbb37a4"
  4257. },
  4258. "dist": {
  4259. "type": "zip",
  4260. "url": "https://api.github.com/repos/symfony/console/zipball/1f0ad51dfde4da8a6070f06adc58b4e37cbb37a4",
  4261. "reference": "1f0ad51dfde4da8a6070f06adc58b4e37cbb37a4",
  4262. "shasum": ""
  4263. },
  4264. "require": {
  4265. "php": "^7.1.3",
  4266. "symfony/contracts": "^1.0",
  4267. "symfony/polyfill-mbstring": "~1.0"
  4268. },
  4269. "conflict": {
  4270. "symfony/dependency-injection": "<3.4",
  4271. "symfony/process": "<3.3"
  4272. },
  4273. "provide": {
  4274. "psr/log-implementation": "1.0"
  4275. },
  4276. "require-dev": {
  4277. "psr/log": "~1.0",
  4278. "symfony/config": "~3.4|~4.0",
  4279. "symfony/dependency-injection": "~3.4|~4.0",
  4280. "symfony/event-dispatcher": "~3.4|~4.0",
  4281. "symfony/lock": "~3.4|~4.0",
  4282. "symfony/process": "~3.4|~4.0"
  4283. },
  4284. "suggest": {
  4285. "psr/log": "For using the console logger",
  4286. "symfony/event-dispatcher": "",
  4287. "symfony/lock": "",
  4288. "symfony/process": ""
  4289. },
  4290. "type": "library",
  4291. "extra": {
  4292. "branch-alias": {
  4293. "dev-master": "4.2-dev"
  4294. }
  4295. },
  4296. "autoload": {
  4297. "psr-4": {
  4298. "Symfony\\Component\\Console\\": ""
  4299. },
  4300. "exclude-from-classmap": [
  4301. "/Tests/"
  4302. ]
  4303. },
  4304. "notification-url": "https://packagist.org/downloads/",
  4305. "license": [
  4306. "MIT"
  4307. ],
  4308. "authors": [
  4309. {
  4310. "name": "Fabien Potencier",
  4311. "email": "fabien@symfony.com"
  4312. },
  4313. {
  4314. "name": "Symfony Community",
  4315. "homepage": "https://symfony.com/contributors"
  4316. }
  4317. ],
  4318. "description": "Symfony Console Component",
  4319. "homepage": "https://symfony.com",
  4320. "time": "2019-01-25T14:35:16+00:00"
  4321. },
  4322. {
  4323. "name": "symfony/contracts",
  4324. "version": "v1.0.2",
  4325. "source": {
  4326. "type": "git",
  4327. "url": "https://github.com/symfony/contracts.git",
  4328. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
  4329. },
  4330. "dist": {
  4331. "type": "zip",
  4332. "url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  4333. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  4334. "shasum": ""
  4335. },
  4336. "require": {
  4337. "php": "^7.1.3"
  4338. },
  4339. "require-dev": {
  4340. "psr/cache": "^1.0",
  4341. "psr/container": "^1.0"
  4342. },
  4343. "suggest": {
  4344. "psr/cache": "When using the Cache contracts",
  4345. "psr/container": "When using the Service contracts",
  4346. "symfony/cache-contracts-implementation": "",
  4347. "symfony/service-contracts-implementation": "",
  4348. "symfony/translation-contracts-implementation": ""
  4349. },
  4350. "type": "library",
  4351. "extra": {
  4352. "branch-alias": {
  4353. "dev-master": "1.0-dev"
  4354. }
  4355. },
  4356. "autoload": {
  4357. "psr-4": {
  4358. "Symfony\\Contracts\\": ""
  4359. },
  4360. "exclude-from-classmap": [
  4361. "**/Tests/"
  4362. ]
  4363. },
  4364. "notification-url": "https://packagist.org/downloads/",
  4365. "license": [
  4366. "MIT"
  4367. ],
  4368. "authors": [
  4369. {
  4370. "name": "Nicolas Grekas",
  4371. "email": "p@tchwork.com"
  4372. },
  4373. {
  4374. "name": "Symfony Community",
  4375. "homepage": "https://symfony.com/contributors"
  4376. }
  4377. ],
  4378. "description": "A set of abstractions extracted out of the Symfony components",
  4379. "homepage": "https://symfony.com",
  4380. "keywords": [
  4381. "abstractions",
  4382. "contracts",
  4383. "decoupling",
  4384. "interfaces",
  4385. "interoperability",
  4386. "standards"
  4387. ],
  4388. "time": "2018-12-05T08:06:11+00:00"
  4389. },
  4390. {
  4391. "name": "symfony/css-selector",
  4392. "version": "v4.2.3",
  4393. "source": {
  4394. "type": "git",
  4395. "url": "https://github.com/symfony/css-selector.git",
  4396. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a"
  4397. },
  4398. "dist": {
  4399. "type": "zip",
  4400. "url": "https://api.github.com/repos/symfony/css-selector/zipball/48eddf66950fa57996e1be4a55916d65c10c604a",
  4401. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a",
  4402. "shasum": ""
  4403. },
  4404. "require": {
  4405. "php": "^7.1.3"
  4406. },
  4407. "type": "library",
  4408. "extra": {
  4409. "branch-alias": {
  4410. "dev-master": "4.2-dev"
  4411. }
  4412. },
  4413. "autoload": {
  4414. "psr-4": {
  4415. "Symfony\\Component\\CssSelector\\": ""
  4416. },
  4417. "exclude-from-classmap": [
  4418. "/Tests/"
  4419. ]
  4420. },
  4421. "notification-url": "https://packagist.org/downloads/",
  4422. "license": [
  4423. "MIT"
  4424. ],
  4425. "authors": [
  4426. {
  4427. "name": "Jean-François Simon",
  4428. "email": "jeanfrancois.simon@sensiolabs.com"
  4429. },
  4430. {
  4431. "name": "Fabien Potencier",
  4432. "email": "fabien@symfony.com"
  4433. },
  4434. {
  4435. "name": "Symfony Community",
  4436. "homepage": "https://symfony.com/contributors"
  4437. }
  4438. ],
  4439. "description": "Symfony CssSelector Component",
  4440. "homepage": "https://symfony.com",
  4441. "time": "2019-01-16T20:31:39+00:00"
  4442. },
  4443. {
  4444. "name": "symfony/debug",
  4445. "version": "v4.2.3",
  4446. "source": {
  4447. "type": "git",
  4448. "url": "https://github.com/symfony/debug.git",
  4449. "reference": "cf9b2e33f757deb884ce474e06d2647c1c769b65"
  4450. },
  4451. "dist": {
  4452. "type": "zip",
  4453. "url": "https://api.github.com/repos/symfony/debug/zipball/cf9b2e33f757deb884ce474e06d2647c1c769b65",
  4454. "reference": "cf9b2e33f757deb884ce474e06d2647c1c769b65",
  4455. "shasum": ""
  4456. },
  4457. "require": {
  4458. "php": "^7.1.3",
  4459. "psr/log": "~1.0"
  4460. },
  4461. "conflict": {
  4462. "symfony/http-kernel": "<3.4"
  4463. },
  4464. "require-dev": {
  4465. "symfony/http-kernel": "~3.4|~4.0"
  4466. },
  4467. "type": "library",
  4468. "extra": {
  4469. "branch-alias": {
  4470. "dev-master": "4.2-dev"
  4471. }
  4472. },
  4473. "autoload": {
  4474. "psr-4": {
  4475. "Symfony\\Component\\Debug\\": ""
  4476. },
  4477. "exclude-from-classmap": [
  4478. "/Tests/"
  4479. ]
  4480. },
  4481. "notification-url": "https://packagist.org/downloads/",
  4482. "license": [
  4483. "MIT"
  4484. ],
  4485. "authors": [
  4486. {
  4487. "name": "Fabien Potencier",
  4488. "email": "fabien@symfony.com"
  4489. },
  4490. {
  4491. "name": "Symfony Community",
  4492. "homepage": "https://symfony.com/contributors"
  4493. }
  4494. ],
  4495. "description": "Symfony Debug Component",
  4496. "homepage": "https://symfony.com",
  4497. "time": "2019-01-25T14:35:16+00:00"
  4498. },
  4499. {
  4500. "name": "symfony/event-dispatcher",
  4501. "version": "v4.2.3",
  4502. "source": {
  4503. "type": "git",
  4504. "url": "https://github.com/symfony/event-dispatcher.git",
  4505. "reference": "bd09ad265cd50b2b9d09d65ce6aba2d29bc81fe1"
  4506. },
  4507. "dist": {
  4508. "type": "zip",
  4509. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/bd09ad265cd50b2b9d09d65ce6aba2d29bc81fe1",
  4510. "reference": "bd09ad265cd50b2b9d09d65ce6aba2d29bc81fe1",
  4511. "shasum": ""
  4512. },
  4513. "require": {
  4514. "php": "^7.1.3",
  4515. "symfony/contracts": "^1.0"
  4516. },
  4517. "conflict": {
  4518. "symfony/dependency-injection": "<3.4"
  4519. },
  4520. "require-dev": {
  4521. "psr/log": "~1.0",
  4522. "symfony/config": "~3.4|~4.0",
  4523. "symfony/dependency-injection": "~3.4|~4.0",
  4524. "symfony/expression-language": "~3.4|~4.0",
  4525. "symfony/stopwatch": "~3.4|~4.0"
  4526. },
  4527. "suggest": {
  4528. "symfony/dependency-injection": "",
  4529. "symfony/http-kernel": ""
  4530. },
  4531. "type": "library",
  4532. "extra": {
  4533. "branch-alias": {
  4534. "dev-master": "4.2-dev"
  4535. }
  4536. },
  4537. "autoload": {
  4538. "psr-4": {
  4539. "Symfony\\Component\\EventDispatcher\\": ""
  4540. },
  4541. "exclude-from-classmap": [
  4542. "/Tests/"
  4543. ]
  4544. },
  4545. "notification-url": "https://packagist.org/downloads/",
  4546. "license": [
  4547. "MIT"
  4548. ],
  4549. "authors": [
  4550. {
  4551. "name": "Fabien Potencier",
  4552. "email": "fabien@symfony.com"
  4553. },
  4554. {
  4555. "name": "Symfony Community",
  4556. "homepage": "https://symfony.com/contributors"
  4557. }
  4558. ],
  4559. "description": "Symfony EventDispatcher Component",
  4560. "homepage": "https://symfony.com",
  4561. "time": "2019-01-16T20:35:37+00:00"
  4562. },
  4563. {
  4564. "name": "symfony/filesystem",
  4565. "version": "v4.2.3",
  4566. "source": {
  4567. "type": "git",
  4568. "url": "https://github.com/symfony/filesystem.git",
  4569. "reference": "7c16ebc2629827d4ec915a52ac809768d060a4ee"
  4570. },
  4571. "dist": {
  4572. "type": "zip",
  4573. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7c16ebc2629827d4ec915a52ac809768d060a4ee",
  4574. "reference": "7c16ebc2629827d4ec915a52ac809768d060a4ee",
  4575. "shasum": ""
  4576. },
  4577. "require": {
  4578. "php": "^7.1.3",
  4579. "symfony/polyfill-ctype": "~1.8"
  4580. },
  4581. "type": "library",
  4582. "extra": {
  4583. "branch-alias": {
  4584. "dev-master": "4.2-dev"
  4585. }
  4586. },
  4587. "autoload": {
  4588. "psr-4": {
  4589. "Symfony\\Component\\Filesystem\\": ""
  4590. },
  4591. "exclude-from-classmap": [
  4592. "/Tests/"
  4593. ]
  4594. },
  4595. "notification-url": "https://packagist.org/downloads/",
  4596. "license": [
  4597. "MIT"
  4598. ],
  4599. "authors": [
  4600. {
  4601. "name": "Fabien Potencier",
  4602. "email": "fabien@symfony.com"
  4603. },
  4604. {
  4605. "name": "Symfony Community",
  4606. "homepage": "https://symfony.com/contributors"
  4607. }
  4608. ],
  4609. "description": "Symfony Filesystem Component",
  4610. "homepage": "https://symfony.com",
  4611. "time": "2019-01-16T20:35:37+00:00"
  4612. },
  4613. {
  4614. "name": "symfony/finder",
  4615. "version": "v4.2.3",
  4616. "source": {
  4617. "type": "git",
  4618. "url": "https://github.com/symfony/finder.git",
  4619. "reference": "ef71816cbb264988bb57fe6a73f610888b9aa70c"
  4620. },
  4621. "dist": {
  4622. "type": "zip",
  4623. "url": "https://api.github.com/repos/symfony/finder/zipball/ef71816cbb264988bb57fe6a73f610888b9aa70c",
  4624. "reference": "ef71816cbb264988bb57fe6a73f610888b9aa70c",
  4625. "shasum": ""
  4626. },
  4627. "require": {
  4628. "php": "^7.1.3"
  4629. },
  4630. "type": "library",
  4631. "extra": {
  4632. "branch-alias": {
  4633. "dev-master": "4.2-dev"
  4634. }
  4635. },
  4636. "autoload": {
  4637. "psr-4": {
  4638. "Symfony\\Component\\Finder\\": ""
  4639. },
  4640. "exclude-from-classmap": [
  4641. "/Tests/"
  4642. ]
  4643. },
  4644. "notification-url": "https://packagist.org/downloads/",
  4645. "license": [
  4646. "MIT"
  4647. ],
  4648. "authors": [
  4649. {
  4650. "name": "Fabien Potencier",
  4651. "email": "fabien@symfony.com"
  4652. },
  4653. {
  4654. "name": "Symfony Community",
  4655. "homepage": "https://symfony.com/contributors"
  4656. }
  4657. ],
  4658. "description": "Symfony Finder Component",
  4659. "homepage": "https://symfony.com",
  4660. "time": "2019-01-16T20:35:37+00:00"
  4661. },
  4662. {
  4663. "name": "symfony/http-foundation",
  4664. "version": "v4.2.3",
  4665. "source": {
  4666. "type": "git",
  4667. "url": "https://github.com/symfony/http-foundation.git",
  4668. "reference": "8d2318b73e0a1bc75baa699d00ebe2ae8b595a39"
  4669. },
  4670. "dist": {
  4671. "type": "zip",
  4672. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8d2318b73e0a1bc75baa699d00ebe2ae8b595a39",
  4673. "reference": "8d2318b73e0a1bc75baa699d00ebe2ae8b595a39",
  4674. "shasum": ""
  4675. },
  4676. "require": {
  4677. "php": "^7.1.3",
  4678. "symfony/polyfill-mbstring": "~1.1"
  4679. },
  4680. "require-dev": {
  4681. "predis/predis": "~1.0",
  4682. "symfony/expression-language": "~3.4|~4.0"
  4683. },
  4684. "type": "library",
  4685. "extra": {
  4686. "branch-alias": {
  4687. "dev-master": "4.2-dev"
  4688. }
  4689. },
  4690. "autoload": {
  4691. "psr-4": {
  4692. "Symfony\\Component\\HttpFoundation\\": ""
  4693. },
  4694. "exclude-from-classmap": [
  4695. "/Tests/"
  4696. ]
  4697. },
  4698. "notification-url": "https://packagist.org/downloads/",
  4699. "license": [
  4700. "MIT"
  4701. ],
  4702. "authors": [
  4703. {
  4704. "name": "Fabien Potencier",
  4705. "email": "fabien@symfony.com"
  4706. },
  4707. {
  4708. "name": "Symfony Community",
  4709. "homepage": "https://symfony.com/contributors"
  4710. }
  4711. ],
  4712. "description": "Symfony HttpFoundation Component",
  4713. "homepage": "https://symfony.com",
  4714. "time": "2019-01-29T09:49:29+00:00"
  4715. },
  4716. {
  4717. "name": "symfony/http-kernel",
  4718. "version": "v4.2.3",
  4719. "source": {
  4720. "type": "git",
  4721. "url": "https://github.com/symfony/http-kernel.git",
  4722. "reference": "d56b1706abaa771eb6acd894c6787cb88f1dc97d"
  4723. },
  4724. "dist": {
  4725. "type": "zip",
  4726. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/d56b1706abaa771eb6acd894c6787cb88f1dc97d",
  4727. "reference": "d56b1706abaa771eb6acd894c6787cb88f1dc97d",
  4728. "shasum": ""
  4729. },
  4730. "require": {
  4731. "php": "^7.1.3",
  4732. "psr/log": "~1.0",
  4733. "symfony/contracts": "^1.0.2",
  4734. "symfony/debug": "~3.4|~4.0",
  4735. "symfony/event-dispatcher": "~4.1",
  4736. "symfony/http-foundation": "^4.1.1",
  4737. "symfony/polyfill-ctype": "~1.8"
  4738. },
  4739. "conflict": {
  4740. "symfony/config": "<3.4",
  4741. "symfony/dependency-injection": "<4.2",
  4742. "symfony/translation": "<4.2",
  4743. "symfony/var-dumper": "<4.1.1",
  4744. "twig/twig": "<1.34|<2.4,>=2"
  4745. },
  4746. "provide": {
  4747. "psr/log-implementation": "1.0"
  4748. },
  4749. "require-dev": {
  4750. "psr/cache": "~1.0",
  4751. "symfony/browser-kit": "~3.4|~4.0",
  4752. "symfony/config": "~3.4|~4.0",
  4753. "symfony/console": "~3.4|~4.0",
  4754. "symfony/css-selector": "~3.4|~4.0",
  4755. "symfony/dependency-injection": "^4.2",
  4756. "symfony/dom-crawler": "~3.4|~4.0",
  4757. "symfony/expression-language": "~3.4|~4.0",
  4758. "symfony/finder": "~3.4|~4.0",
  4759. "symfony/process": "~3.4|~4.0",
  4760. "symfony/routing": "~3.4|~4.0",
  4761. "symfony/stopwatch": "~3.4|~4.0",
  4762. "symfony/templating": "~3.4|~4.0",
  4763. "symfony/translation": "~4.2",
  4764. "symfony/var-dumper": "^4.1.1"
  4765. },
  4766. "suggest": {
  4767. "symfony/browser-kit": "",
  4768. "symfony/config": "",
  4769. "symfony/console": "",
  4770. "symfony/dependency-injection": "",
  4771. "symfony/var-dumper": ""
  4772. },
  4773. "type": "library",
  4774. "extra": {
  4775. "branch-alias": {
  4776. "dev-master": "4.2-dev"
  4777. }
  4778. },
  4779. "autoload": {
  4780. "psr-4": {
  4781. "Symfony\\Component\\HttpKernel\\": ""
  4782. },
  4783. "exclude-from-classmap": [
  4784. "/Tests/"
  4785. ]
  4786. },
  4787. "notification-url": "https://packagist.org/downloads/",
  4788. "license": [
  4789. "MIT"
  4790. ],
  4791. "authors": [
  4792. {
  4793. "name": "Fabien Potencier",
  4794. "email": "fabien@symfony.com"
  4795. },
  4796. {
  4797. "name": "Symfony Community",
  4798. "homepage": "https://symfony.com/contributors"
  4799. }
  4800. ],
  4801. "description": "Symfony HttpKernel Component",
  4802. "homepage": "https://symfony.com",
  4803. "time": "2019-02-03T12:47:33+00:00"
  4804. },
  4805. {
  4806. "name": "symfony/polyfill-ctype",
  4807. "version": "v1.10.0",
  4808. "source": {
  4809. "type": "git",
  4810. "url": "https://github.com/symfony/polyfill-ctype.git",
  4811. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  4812. },
  4813. "dist": {
  4814. "type": "zip",
  4815. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  4816. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  4817. "shasum": ""
  4818. },
  4819. "require": {
  4820. "php": ">=5.3.3"
  4821. },
  4822. "suggest": {
  4823. "ext-ctype": "For best performance"
  4824. },
  4825. "type": "library",
  4826. "extra": {
  4827. "branch-alias": {
  4828. "dev-master": "1.9-dev"
  4829. }
  4830. },
  4831. "autoload": {
  4832. "psr-4": {
  4833. "Symfony\\Polyfill\\Ctype\\": ""
  4834. },
  4835. "files": [
  4836. "bootstrap.php"
  4837. ]
  4838. },
  4839. "notification-url": "https://packagist.org/downloads/",
  4840. "license": [
  4841. "MIT"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "Symfony Community",
  4846. "homepage": "https://symfony.com/contributors"
  4847. },
  4848. {
  4849. "name": "Gert de Pagter",
  4850. "email": "BackEndTea@gmail.com"
  4851. }
  4852. ],
  4853. "description": "Symfony polyfill for ctype functions",
  4854. "homepage": "https://symfony.com",
  4855. "keywords": [
  4856. "compatibility",
  4857. "ctype",
  4858. "polyfill",
  4859. "portable"
  4860. ],
  4861. "time": "2018-08-06T14:22:27+00:00"
  4862. },
  4863. {
  4864. "name": "symfony/polyfill-mbstring",
  4865. "version": "v1.10.0",
  4866. "source": {
  4867. "type": "git",
  4868. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4869. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  4870. },
  4871. "dist": {
  4872. "type": "zip",
  4873. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  4874. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  4875. "shasum": ""
  4876. },
  4877. "require": {
  4878. "php": ">=5.3.3"
  4879. },
  4880. "suggest": {
  4881. "ext-mbstring": "For best performance"
  4882. },
  4883. "type": "library",
  4884. "extra": {
  4885. "branch-alias": {
  4886. "dev-master": "1.9-dev"
  4887. }
  4888. },
  4889. "autoload": {
  4890. "psr-4": {
  4891. "Symfony\\Polyfill\\Mbstring\\": ""
  4892. },
  4893. "files": [
  4894. "bootstrap.php"
  4895. ]
  4896. },
  4897. "notification-url": "https://packagist.org/downloads/",
  4898. "license": [
  4899. "MIT"
  4900. ],
  4901. "authors": [
  4902. {
  4903. "name": "Nicolas Grekas",
  4904. "email": "p@tchwork.com"
  4905. },
  4906. {
  4907. "name": "Symfony Community",
  4908. "homepage": "https://symfony.com/contributors"
  4909. }
  4910. ],
  4911. "description": "Symfony polyfill for the Mbstring extension",
  4912. "homepage": "https://symfony.com",
  4913. "keywords": [
  4914. "compatibility",
  4915. "mbstring",
  4916. "polyfill",
  4917. "portable",
  4918. "shim"
  4919. ],
  4920. "time": "2018-09-21T13:07:52+00:00"
  4921. },
  4922. {
  4923. "name": "symfony/polyfill-php56",
  4924. "version": "v1.10.0",
  4925. "source": {
  4926. "type": "git",
  4927. "url": "https://github.com/symfony/polyfill-php56.git",
  4928. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af"
  4929. },
  4930. "dist": {
  4931. "type": "zip",
  4932. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/ff208829fe1aa48ab9af356992bb7199fed551af",
  4933. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af",
  4934. "shasum": ""
  4935. },
  4936. "require": {
  4937. "php": ">=5.3.3",
  4938. "symfony/polyfill-util": "~1.0"
  4939. },
  4940. "type": "library",
  4941. "extra": {
  4942. "branch-alias": {
  4943. "dev-master": "1.9-dev"
  4944. }
  4945. },
  4946. "autoload": {
  4947. "psr-4": {
  4948. "Symfony\\Polyfill\\Php56\\": ""
  4949. },
  4950. "files": [
  4951. "bootstrap.php"
  4952. ]
  4953. },
  4954. "notification-url": "https://packagist.org/downloads/",
  4955. "license": [
  4956. "MIT"
  4957. ],
  4958. "authors": [
  4959. {
  4960. "name": "Nicolas Grekas",
  4961. "email": "p@tchwork.com"
  4962. },
  4963. {
  4964. "name": "Symfony Community",
  4965. "homepage": "https://symfony.com/contributors"
  4966. }
  4967. ],
  4968. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  4969. "homepage": "https://symfony.com",
  4970. "keywords": [
  4971. "compatibility",
  4972. "polyfill",
  4973. "portable",
  4974. "shim"
  4975. ],
  4976. "time": "2018-09-21T06:26:08+00:00"
  4977. },
  4978. {
  4979. "name": "symfony/polyfill-php72",
  4980. "version": "v1.10.0",
  4981. "source": {
  4982. "type": "git",
  4983. "url": "https://github.com/symfony/polyfill-php72.git",
  4984. "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631"
  4985. },
  4986. "dist": {
  4987. "type": "zip",
  4988. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
  4989. "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
  4990. "shasum": ""
  4991. },
  4992. "require": {
  4993. "php": ">=5.3.3"
  4994. },
  4995. "type": "library",
  4996. "extra": {
  4997. "branch-alias": {
  4998. "dev-master": "1.9-dev"
  4999. }
  5000. },
  5001. "autoload": {
  5002. "psr-4": {
  5003. "Symfony\\Polyfill\\Php72\\": ""
  5004. },
  5005. "files": [
  5006. "bootstrap.php"
  5007. ]
  5008. },
  5009. "notification-url": "https://packagist.org/downloads/",
  5010. "license": [
  5011. "MIT"
  5012. ],
  5013. "authors": [
  5014. {
  5015. "name": "Nicolas Grekas",
  5016. "email": "p@tchwork.com"
  5017. },
  5018. {
  5019. "name": "Symfony Community",
  5020. "homepage": "https://symfony.com/contributors"
  5021. }
  5022. ],
  5023. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5024. "homepage": "https://symfony.com",
  5025. "keywords": [
  5026. "compatibility",
  5027. "polyfill",
  5028. "portable",
  5029. "shim"
  5030. ],
  5031. "time": "2018-09-21T13:07:52+00:00"
  5032. },
  5033. {
  5034. "name": "symfony/polyfill-util",
  5035. "version": "v1.10.0",
  5036. "source": {
  5037. "type": "git",
  5038. "url": "https://github.com/symfony/polyfill-util.git",
  5039. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c"
  5040. },
  5041. "dist": {
  5042. "type": "zip",
  5043. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/3b58903eae668d348a7126f999b0da0f2f93611c",
  5044. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c",
  5045. "shasum": ""
  5046. },
  5047. "require": {
  5048. "php": ">=5.3.3"
  5049. },
  5050. "type": "library",
  5051. "extra": {
  5052. "branch-alias": {
  5053. "dev-master": "1.9-dev"
  5054. }
  5055. },
  5056. "autoload": {
  5057. "psr-4": {
  5058. "Symfony\\Polyfill\\Util\\": ""
  5059. }
  5060. },
  5061. "notification-url": "https://packagist.org/downloads/",
  5062. "license": [
  5063. "MIT"
  5064. ],
  5065. "authors": [
  5066. {
  5067. "name": "Nicolas Grekas",
  5068. "email": "p@tchwork.com"
  5069. },
  5070. {
  5071. "name": "Symfony Community",
  5072. "homepage": "https://symfony.com/contributors"
  5073. }
  5074. ],
  5075. "description": "Symfony utilities for portability of PHP codes",
  5076. "homepage": "https://symfony.com",
  5077. "keywords": [
  5078. "compat",
  5079. "compatibility",
  5080. "polyfill",
  5081. "shim"
  5082. ],
  5083. "time": "2018-09-30T16:36:12+00:00"
  5084. },
  5085. {
  5086. "name": "symfony/process",
  5087. "version": "v4.2.3",
  5088. "source": {
  5089. "type": "git",
  5090. "url": "https://github.com/symfony/process.git",
  5091. "reference": "6c05edb11fbeff9e2b324b4270ecb17911a8b7ad"
  5092. },
  5093. "dist": {
  5094. "type": "zip",
  5095. "url": "https://api.github.com/repos/symfony/process/zipball/6c05edb11fbeff9e2b324b4270ecb17911a8b7ad",
  5096. "reference": "6c05edb11fbeff9e2b324b4270ecb17911a8b7ad",
  5097. "shasum": ""
  5098. },
  5099. "require": {
  5100. "php": "^7.1.3"
  5101. },
  5102. "type": "library",
  5103. "extra": {
  5104. "branch-alias": {
  5105. "dev-master": "4.2-dev"
  5106. }
  5107. },
  5108. "autoload": {
  5109. "psr-4": {
  5110. "Symfony\\Component\\Process\\": ""
  5111. },
  5112. "exclude-from-classmap": [
  5113. "/Tests/"
  5114. ]
  5115. },
  5116. "notification-url": "https://packagist.org/downloads/",
  5117. "license": [
  5118. "MIT"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "Fabien Potencier",
  5123. "email": "fabien@symfony.com"
  5124. },
  5125. {
  5126. "name": "Symfony Community",
  5127. "homepage": "https://symfony.com/contributors"
  5128. }
  5129. ],
  5130. "description": "Symfony Process Component",
  5131. "homepage": "https://symfony.com",
  5132. "time": "2019-01-24T22:05:03+00:00"
  5133. },
  5134. {
  5135. "name": "symfony/psr-http-message-bridge",
  5136. "version": "v1.1.0",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  5140. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  5145. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  5146. "shasum": ""
  5147. },
  5148. "require": {
  5149. "php": "^5.3.3 || ^7.0",
  5150. "psr/http-message": "^1.0",
  5151. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  5152. },
  5153. "require-dev": {
  5154. "symfony/phpunit-bridge": "^3.4 || 4.0"
  5155. },
  5156. "suggest": {
  5157. "psr/http-factory-implementation": "To use the PSR-17 factory",
  5158. "psr/http-message-implementation": "To use the HttpFoundation factory",
  5159. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  5160. },
  5161. "type": "symfony-bridge",
  5162. "extra": {
  5163. "branch-alias": {
  5164. "dev-master": "1.1-dev"
  5165. }
  5166. },
  5167. "autoload": {
  5168. "psr-4": {
  5169. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  5170. }
  5171. },
  5172. "notification-url": "https://packagist.org/downloads/",
  5173. "license": [
  5174. "MIT"
  5175. ],
  5176. "authors": [
  5177. {
  5178. "name": "Symfony Community",
  5179. "homepage": "http://symfony.com/contributors"
  5180. },
  5181. {
  5182. "name": "Fabien Potencier",
  5183. "email": "fabien@symfony.com"
  5184. }
  5185. ],
  5186. "description": "PSR HTTP message bridge",
  5187. "homepage": "http://symfony.com",
  5188. "keywords": [
  5189. "http",
  5190. "http-message",
  5191. "psr-7"
  5192. ],
  5193. "time": "2018-08-30T16:28:28+00:00"
  5194. },
  5195. {
  5196. "name": "symfony/routing",
  5197. "version": "v4.2.3",
  5198. "source": {
  5199. "type": "git",
  5200. "url": "https://github.com/symfony/routing.git",
  5201. "reference": "7f8e44fc498972466f0841c3e48dc555f23bdf53"
  5202. },
  5203. "dist": {
  5204. "type": "zip",
  5205. "url": "https://api.github.com/repos/symfony/routing/zipball/7f8e44fc498972466f0841c3e48dc555f23bdf53",
  5206. "reference": "7f8e44fc498972466f0841c3e48dc555f23bdf53",
  5207. "shasum": ""
  5208. },
  5209. "require": {
  5210. "php": "^7.1.3"
  5211. },
  5212. "conflict": {
  5213. "symfony/config": "<4.2",
  5214. "symfony/dependency-injection": "<3.4",
  5215. "symfony/yaml": "<3.4"
  5216. },
  5217. "require-dev": {
  5218. "doctrine/annotations": "~1.0",
  5219. "psr/log": "~1.0",
  5220. "symfony/config": "~4.2",
  5221. "symfony/dependency-injection": "~3.4|~4.0",
  5222. "symfony/expression-language": "~3.4|~4.0",
  5223. "symfony/http-foundation": "~3.4|~4.0",
  5224. "symfony/yaml": "~3.4|~4.0"
  5225. },
  5226. "suggest": {
  5227. "doctrine/annotations": "For using the annotation loader",
  5228. "symfony/config": "For using the all-in-one router or any loader",
  5229. "symfony/dependency-injection": "For loading routes from a service",
  5230. "symfony/expression-language": "For using expression matching",
  5231. "symfony/http-foundation": "For using a Symfony Request object",
  5232. "symfony/yaml": "For using the YAML loader"
  5233. },
  5234. "type": "library",
  5235. "extra": {
  5236. "branch-alias": {
  5237. "dev-master": "4.2-dev"
  5238. }
  5239. },
  5240. "autoload": {
  5241. "psr-4": {
  5242. "Symfony\\Component\\Routing\\": ""
  5243. },
  5244. "exclude-from-classmap": [
  5245. "/Tests/"
  5246. ]
  5247. },
  5248. "notification-url": "https://packagist.org/downloads/",
  5249. "license": [
  5250. "MIT"
  5251. ],
  5252. "authors": [
  5253. {
  5254. "name": "Fabien Potencier",
  5255. "email": "fabien@symfony.com"
  5256. },
  5257. {
  5258. "name": "Symfony Community",
  5259. "homepage": "https://symfony.com/contributors"
  5260. }
  5261. ],
  5262. "description": "Symfony Routing Component",
  5263. "homepage": "https://symfony.com",
  5264. "keywords": [
  5265. "router",
  5266. "routing",
  5267. "uri",
  5268. "url"
  5269. ],
  5270. "time": "2019-01-29T09:49:29+00:00"
  5271. },
  5272. {
  5273. "name": "symfony/translation",
  5274. "version": "v4.2.3",
  5275. "source": {
  5276. "type": "git",
  5277. "url": "https://github.com/symfony/translation.git",
  5278. "reference": "23fd7aac70d99a17a8e6473a41fec8fab3331050"
  5279. },
  5280. "dist": {
  5281. "type": "zip",
  5282. "url": "https://api.github.com/repos/symfony/translation/zipball/23fd7aac70d99a17a8e6473a41fec8fab3331050",
  5283. "reference": "23fd7aac70d99a17a8e6473a41fec8fab3331050",
  5284. "shasum": ""
  5285. },
  5286. "require": {
  5287. "php": "^7.1.3",
  5288. "symfony/contracts": "^1.0.2",
  5289. "symfony/polyfill-mbstring": "~1.0"
  5290. },
  5291. "conflict": {
  5292. "symfony/config": "<3.4",
  5293. "symfony/dependency-injection": "<3.4",
  5294. "symfony/yaml": "<3.4"
  5295. },
  5296. "provide": {
  5297. "symfony/translation-contracts-implementation": "1.0"
  5298. },
  5299. "require-dev": {
  5300. "psr/log": "~1.0",
  5301. "symfony/config": "~3.4|~4.0",
  5302. "symfony/console": "~3.4|~4.0",
  5303. "symfony/dependency-injection": "~3.4|~4.0",
  5304. "symfony/finder": "~2.8|~3.0|~4.0",
  5305. "symfony/intl": "~3.4|~4.0",
  5306. "symfony/yaml": "~3.4|~4.0"
  5307. },
  5308. "suggest": {
  5309. "psr/log-implementation": "To use logging capability in translator",
  5310. "symfony/config": "",
  5311. "symfony/yaml": ""
  5312. },
  5313. "type": "library",
  5314. "extra": {
  5315. "branch-alias": {
  5316. "dev-master": "4.2-dev"
  5317. }
  5318. },
  5319. "autoload": {
  5320. "psr-4": {
  5321. "Symfony\\Component\\Translation\\": ""
  5322. },
  5323. "exclude-from-classmap": [
  5324. "/Tests/"
  5325. ]
  5326. },
  5327. "notification-url": "https://packagist.org/downloads/",
  5328. "license": [
  5329. "MIT"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "Fabien Potencier",
  5334. "email": "fabien@symfony.com"
  5335. },
  5336. {
  5337. "name": "Symfony Community",
  5338. "homepage": "https://symfony.com/contributors"
  5339. }
  5340. ],
  5341. "description": "Symfony Translation Component",
  5342. "homepage": "https://symfony.com",
  5343. "time": "2019-01-27T23:11:39+00:00"
  5344. },
  5345. {
  5346. "name": "symfony/var-dumper",
  5347. "version": "v4.2.3",
  5348. "source": {
  5349. "type": "git",
  5350. "url": "https://github.com/symfony/var-dumper.git",
  5351. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17"
  5352. },
  5353. "dist": {
  5354. "type": "zip",
  5355. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/223bda89f9be41cf7033eeaf11bc61a280489c17",
  5356. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17",
  5357. "shasum": ""
  5358. },
  5359. "require": {
  5360. "php": "^7.1.3",
  5361. "symfony/polyfill-mbstring": "~1.0",
  5362. "symfony/polyfill-php72": "~1.5"
  5363. },
  5364. "conflict": {
  5365. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5366. "symfony/console": "<3.4"
  5367. },
  5368. "require-dev": {
  5369. "ext-iconv": "*",
  5370. "symfony/console": "~3.4|~4.0",
  5371. "symfony/process": "~3.4|~4.0",
  5372. "twig/twig": "~1.34|~2.4"
  5373. },
  5374. "suggest": {
  5375. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5376. "ext-intl": "To show region name in time zone dump",
  5377. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5378. },
  5379. "bin": [
  5380. "Resources/bin/var-dump-server"
  5381. ],
  5382. "type": "library",
  5383. "extra": {
  5384. "branch-alias": {
  5385. "dev-master": "4.2-dev"
  5386. }
  5387. },
  5388. "autoload": {
  5389. "files": [
  5390. "Resources/functions/dump.php"
  5391. ],
  5392. "psr-4": {
  5393. "Symfony\\Component\\VarDumper\\": ""
  5394. },
  5395. "exclude-from-classmap": [
  5396. "/Tests/"
  5397. ]
  5398. },
  5399. "notification-url": "https://packagist.org/downloads/",
  5400. "license": [
  5401. "MIT"
  5402. ],
  5403. "authors": [
  5404. {
  5405. "name": "Nicolas Grekas",
  5406. "email": "p@tchwork.com"
  5407. },
  5408. {
  5409. "name": "Symfony Community",
  5410. "homepage": "https://symfony.com/contributors"
  5411. }
  5412. ],
  5413. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5414. "homepage": "https://symfony.com",
  5415. "keywords": [
  5416. "debug",
  5417. "dump"
  5418. ],
  5419. "time": "2019-01-30T11:44:30+00:00"
  5420. },
  5421. {
  5422. "name": "tightenco/collect",
  5423. "version": "v5.8.2",
  5424. "source": {
  5425. "type": "git",
  5426. "url": "https://github.com/tightenco/collect.git",
  5427. "reference": "9e431d3ba84ff02183bbb6da07410d59ef769f9b"
  5428. },
  5429. "dist": {
  5430. "type": "zip",
  5431. "url": "https://api.github.com/repos/tightenco/collect/zipball/9e431d3ba84ff02183bbb6da07410d59ef769f9b",
  5432. "reference": "9e431d3ba84ff02183bbb6da07410d59ef769f9b",
  5433. "shasum": ""
  5434. },
  5435. "require": {
  5436. "php": "^7.1.3",
  5437. "symfony/var-dumper": ">=3.4 <5"
  5438. },
  5439. "require-dev": {
  5440. "mockery/mockery": "^1.0",
  5441. "nesbot/carbon": "^1.26.3",
  5442. "phpunit/phpunit": "^7.0"
  5443. },
  5444. "type": "library",
  5445. "autoload": {
  5446. "files": [
  5447. "src/Collect/Support/helpers.php",
  5448. "src/Collect/Support/alias.php"
  5449. ],
  5450. "psr-4": {
  5451. "Tightenco\\Collect\\": "src/Collect"
  5452. }
  5453. },
  5454. "notification-url": "https://packagist.org/downloads/",
  5455. "license": [
  5456. "MIT"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "Taylor Otwell",
  5461. "email": "taylorotwell@gmail.com"
  5462. }
  5463. ],
  5464. "description": "Collect - Illuminate Collections as a separate package.",
  5465. "keywords": [
  5466. "collection",
  5467. "laravel"
  5468. ],
  5469. "time": "2019-02-26T18:45:33+00:00"
  5470. },
  5471. {
  5472. "name": "tijsverkoyen/css-to-inline-styles",
  5473. "version": "2.2.1",
  5474. "source": {
  5475. "type": "git",
  5476. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5477. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  5478. },
  5479. "dist": {
  5480. "type": "zip",
  5481. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  5482. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  5483. "shasum": ""
  5484. },
  5485. "require": {
  5486. "php": "^5.5 || ^7.0",
  5487. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  5488. },
  5489. "require-dev": {
  5490. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5491. },
  5492. "type": "library",
  5493. "extra": {
  5494. "branch-alias": {
  5495. "dev-master": "2.2.x-dev"
  5496. }
  5497. },
  5498. "autoload": {
  5499. "psr-4": {
  5500. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5501. }
  5502. },
  5503. "notification-url": "https://packagist.org/downloads/",
  5504. "license": [
  5505. "BSD-3-Clause"
  5506. ],
  5507. "authors": [
  5508. {
  5509. "name": "Tijs Verkoyen",
  5510. "email": "css_to_inline_styles@verkoyen.eu",
  5511. "role": "Developer"
  5512. }
  5513. ],
  5514. "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.",
  5515. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5516. "time": "2017-11-27T11:13:29+00:00"
  5517. },
  5518. {
  5519. "name": "vlucas/phpdotenv",
  5520. "version": "v3.3.2",
  5521. "source": {
  5522. "type": "git",
  5523. "url": "https://github.com/vlucas/phpdotenv.git",
  5524. "reference": "1ee9369cfbf26cfcf1f2515d98f15fab54e9647a"
  5525. },
  5526. "dist": {
  5527. "type": "zip",
  5528. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1ee9369cfbf26cfcf1f2515d98f15fab54e9647a",
  5529. "reference": "1ee9369cfbf26cfcf1f2515d98f15fab54e9647a",
  5530. "shasum": ""
  5531. },
  5532. "require": {
  5533. "php": "^5.4 || ^7.0",
  5534. "phpoption/phpoption": "^1.5",
  5535. "symfony/polyfill-ctype": "^1.9"
  5536. },
  5537. "require-dev": {
  5538. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0"
  5539. },
  5540. "type": "library",
  5541. "extra": {
  5542. "branch-alias": {
  5543. "dev-master": "3.3-dev"
  5544. }
  5545. },
  5546. "autoload": {
  5547. "psr-4": {
  5548. "Dotenv\\": "src/"
  5549. }
  5550. },
  5551. "notification-url": "https://packagist.org/downloads/",
  5552. "license": [
  5553. "BSD-3-Clause"
  5554. ],
  5555. "authors": [
  5556. {
  5557. "name": "Vance Lucas",
  5558. "email": "vance@vancelucas.com",
  5559. "homepage": "http://www.vancelucas.com"
  5560. }
  5561. ],
  5562. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5563. "keywords": [
  5564. "dotenv",
  5565. "env",
  5566. "environment"
  5567. ],
  5568. "time": "2019-01-30T10:43:17+00:00"
  5569. },
  5570. {
  5571. "name": "zendframework/zend-diactoros",
  5572. "version": "1.8.6",
  5573. "source": {
  5574. "type": "git",
  5575. "url": "https://github.com/zendframework/zend-diactoros.git",
  5576. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  5577. },
  5578. "dist": {
  5579. "type": "zip",
  5580. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  5581. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  5582. "shasum": ""
  5583. },
  5584. "require": {
  5585. "php": "^5.6 || ^7.0",
  5586. "psr/http-message": "^1.0"
  5587. },
  5588. "provide": {
  5589. "psr/http-message-implementation": "1.0"
  5590. },
  5591. "require-dev": {
  5592. "ext-dom": "*",
  5593. "ext-libxml": "*",
  5594. "php-http/psr7-integration-tests": "dev-master",
  5595. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  5596. "zendframework/zend-coding-standard": "~1.0"
  5597. },
  5598. "type": "library",
  5599. "extra": {
  5600. "branch-alias": {
  5601. "dev-master": "1.8.x-dev",
  5602. "dev-develop": "1.9.x-dev",
  5603. "dev-release-2.0": "2.0.x-dev"
  5604. }
  5605. },
  5606. "autoload": {
  5607. "files": [
  5608. "src/functions/create_uploaded_file.php",
  5609. "src/functions/marshal_headers_from_sapi.php",
  5610. "src/functions/marshal_method_from_sapi.php",
  5611. "src/functions/marshal_protocol_version_from_sapi.php",
  5612. "src/functions/marshal_uri_from_sapi.php",
  5613. "src/functions/normalize_server.php",
  5614. "src/functions/normalize_uploaded_files.php",
  5615. "src/functions/parse_cookie_header.php"
  5616. ],
  5617. "psr-4": {
  5618. "Zend\\Diactoros\\": "src/"
  5619. }
  5620. },
  5621. "notification-url": "https://packagist.org/downloads/",
  5622. "license": [
  5623. "BSD-2-Clause"
  5624. ],
  5625. "description": "PSR HTTP Message implementations",
  5626. "homepage": "https://github.com/zendframework/zend-diactoros",
  5627. "keywords": [
  5628. "http",
  5629. "psr",
  5630. "psr-7"
  5631. ],
  5632. "time": "2018-09-05T19:29:37+00:00"
  5633. }
  5634. ],
  5635. "packages-dev": [
  5636. {
  5637. "name": "doctrine/instantiator",
  5638. "version": "1.1.0",
  5639. "source": {
  5640. "type": "git",
  5641. "url": "https://github.com/doctrine/instantiator.git",
  5642. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  5643. },
  5644. "dist": {
  5645. "type": "zip",
  5646. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  5647. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  5648. "shasum": ""
  5649. },
  5650. "require": {
  5651. "php": "^7.1"
  5652. },
  5653. "require-dev": {
  5654. "athletic/athletic": "~0.1.8",
  5655. "ext-pdo": "*",
  5656. "ext-phar": "*",
  5657. "phpunit/phpunit": "^6.2.3",
  5658. "squizlabs/php_codesniffer": "^3.0.2"
  5659. },
  5660. "type": "library",
  5661. "extra": {
  5662. "branch-alias": {
  5663. "dev-master": "1.2.x-dev"
  5664. }
  5665. },
  5666. "autoload": {
  5667. "psr-4": {
  5668. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5669. }
  5670. },
  5671. "notification-url": "https://packagist.org/downloads/",
  5672. "license": [
  5673. "MIT"
  5674. ],
  5675. "authors": [
  5676. {
  5677. "name": "Marco Pivetta",
  5678. "email": "ocramius@gmail.com",
  5679. "homepage": "http://ocramius.github.com/"
  5680. }
  5681. ],
  5682. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5683. "homepage": "https://github.com/doctrine/instantiator",
  5684. "keywords": [
  5685. "constructor",
  5686. "instantiate"
  5687. ],
  5688. "time": "2017-07-22T11:58:36+00:00"
  5689. },
  5690. {
  5691. "name": "filp/whoops",
  5692. "version": "2.3.1",
  5693. "source": {
  5694. "type": "git",
  5695. "url": "https://github.com/filp/whoops.git",
  5696. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
  5697. },
  5698. "dist": {
  5699. "type": "zip",
  5700. "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  5701. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  5702. "shasum": ""
  5703. },
  5704. "require": {
  5705. "php": "^5.5.9 || ^7.0",
  5706. "psr/log": "^1.0.1"
  5707. },
  5708. "require-dev": {
  5709. "mockery/mockery": "^0.9 || ^1.0",
  5710. "phpunit/phpunit": "^4.8.35 || ^5.7",
  5711. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  5712. },
  5713. "suggest": {
  5714. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5715. "whoops/soap": "Formats errors as SOAP responses"
  5716. },
  5717. "type": "library",
  5718. "extra": {
  5719. "branch-alias": {
  5720. "dev-master": "2.2-dev"
  5721. }
  5722. },
  5723. "autoload": {
  5724. "psr-4": {
  5725. "Whoops\\": "src/Whoops/"
  5726. }
  5727. },
  5728. "notification-url": "https://packagist.org/downloads/",
  5729. "license": [
  5730. "MIT"
  5731. ],
  5732. "authors": [
  5733. {
  5734. "name": "Filipe Dobreira",
  5735. "homepage": "https://github.com/filp",
  5736. "role": "Developer"
  5737. }
  5738. ],
  5739. "description": "php error handling for cool kids",
  5740. "homepage": "https://filp.github.io/whoops/",
  5741. "keywords": [
  5742. "error",
  5743. "exception",
  5744. "handling",
  5745. "library",
  5746. "throwable",
  5747. "whoops"
  5748. ],
  5749. "time": "2018-10-23T09:00:00+00:00"
  5750. },
  5751. {
  5752. "name": "fzaninotto/faker",
  5753. "version": "v1.8.0",
  5754. "source": {
  5755. "type": "git",
  5756. "url": "https://github.com/fzaninotto/Faker.git",
  5757. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  5758. },
  5759. "dist": {
  5760. "type": "zip",
  5761. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  5762. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  5763. "shasum": ""
  5764. },
  5765. "require": {
  5766. "php": "^5.3.3 || ^7.0"
  5767. },
  5768. "require-dev": {
  5769. "ext-intl": "*",
  5770. "phpunit/phpunit": "^4.8.35 || ^5.7",
  5771. "squizlabs/php_codesniffer": "^1.5"
  5772. },
  5773. "type": "library",
  5774. "extra": {
  5775. "branch-alias": {
  5776. "dev-master": "1.8-dev"
  5777. }
  5778. },
  5779. "autoload": {
  5780. "psr-4": {
  5781. "Faker\\": "src/Faker/"
  5782. }
  5783. },
  5784. "notification-url": "https://packagist.org/downloads/",
  5785. "license": [
  5786. "MIT"
  5787. ],
  5788. "authors": [
  5789. {
  5790. "name": "François Zaninotto"
  5791. }
  5792. ],
  5793. "description": "Faker is a PHP library that generates fake data for you.",
  5794. "keywords": [
  5795. "data",
  5796. "faker",
  5797. "fixtures"
  5798. ],
  5799. "time": "2018-07-12T10:23:15+00:00"
  5800. },
  5801. {
  5802. "name": "hamcrest/hamcrest-php",
  5803. "version": "v2.0.0",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5807. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  5812. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  5813. "shasum": ""
  5814. },
  5815. "require": {
  5816. "php": "^5.3|^7.0"
  5817. },
  5818. "replace": {
  5819. "cordoval/hamcrest-php": "*",
  5820. "davedevelopment/hamcrest-php": "*",
  5821. "kodova/hamcrest-php": "*"
  5822. },
  5823. "require-dev": {
  5824. "phpunit/php-file-iterator": "1.3.3",
  5825. "phpunit/phpunit": "~4.0",
  5826. "satooshi/php-coveralls": "^1.0"
  5827. },
  5828. "type": "library",
  5829. "extra": {
  5830. "branch-alias": {
  5831. "dev-master": "2.0-dev"
  5832. }
  5833. },
  5834. "autoload": {
  5835. "classmap": [
  5836. "hamcrest"
  5837. ]
  5838. },
  5839. "notification-url": "https://packagist.org/downloads/",
  5840. "license": [
  5841. "BSD"
  5842. ],
  5843. "description": "This is the PHP port of Hamcrest Matchers",
  5844. "keywords": [
  5845. "test"
  5846. ],
  5847. "time": "2016-01-20T08:20:44+00:00"
  5848. },
  5849. {
  5850. "name": "mockery/mockery",
  5851. "version": "1.2.2",
  5852. "source": {
  5853. "type": "git",
  5854. "url": "https://github.com/mockery/mockery.git",
  5855. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2"
  5856. },
  5857. "dist": {
  5858. "type": "zip",
  5859. "url": "https://api.github.com/repos/mockery/mockery/zipball/0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  5860. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  5861. "shasum": ""
  5862. },
  5863. "require": {
  5864. "hamcrest/hamcrest-php": "~2.0",
  5865. "lib-pcre": ">=7.0",
  5866. "php": ">=5.6.0"
  5867. },
  5868. "require-dev": {
  5869. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  5870. },
  5871. "type": "library",
  5872. "extra": {
  5873. "branch-alias": {
  5874. "dev-master": "1.0.x-dev"
  5875. }
  5876. },
  5877. "autoload": {
  5878. "psr-0": {
  5879. "Mockery": "library/"
  5880. }
  5881. },
  5882. "notification-url": "https://packagist.org/downloads/",
  5883. "license": [
  5884. "BSD-3-Clause"
  5885. ],
  5886. "authors": [
  5887. {
  5888. "name": "Pádraic Brady",
  5889. "email": "padraic.brady@gmail.com",
  5890. "homepage": "http://blog.astrumfutura.com"
  5891. },
  5892. {
  5893. "name": "Dave Marshall",
  5894. "email": "dave.marshall@atstsolutions.co.uk",
  5895. "homepage": "http://davedevelopment.co.uk"
  5896. }
  5897. ],
  5898. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5899. "homepage": "https://github.com/mockery/mockery",
  5900. "keywords": [
  5901. "BDD",
  5902. "TDD",
  5903. "library",
  5904. "mock",
  5905. "mock objects",
  5906. "mockery",
  5907. "stub",
  5908. "test",
  5909. "test double",
  5910. "testing"
  5911. ],
  5912. "time": "2019-02-13T09:37:52+00:00"
  5913. },
  5914. {
  5915. "name": "myclabs/deep-copy",
  5916. "version": "1.8.1",
  5917. "source": {
  5918. "type": "git",
  5919. "url": "https://github.com/myclabs/DeepCopy.git",
  5920. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  5921. },
  5922. "dist": {
  5923. "type": "zip",
  5924. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  5925. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  5926. "shasum": ""
  5927. },
  5928. "require": {
  5929. "php": "^7.1"
  5930. },
  5931. "replace": {
  5932. "myclabs/deep-copy": "self.version"
  5933. },
  5934. "require-dev": {
  5935. "doctrine/collections": "^1.0",
  5936. "doctrine/common": "^2.6",
  5937. "phpunit/phpunit": "^7.1"
  5938. },
  5939. "type": "library",
  5940. "autoload": {
  5941. "psr-4": {
  5942. "DeepCopy\\": "src/DeepCopy/"
  5943. },
  5944. "files": [
  5945. "src/DeepCopy/deep_copy.php"
  5946. ]
  5947. },
  5948. "notification-url": "https://packagist.org/downloads/",
  5949. "license": [
  5950. "MIT"
  5951. ],
  5952. "description": "Create deep copies (clones) of your objects",
  5953. "keywords": [
  5954. "clone",
  5955. "copy",
  5956. "duplicate",
  5957. "object",
  5958. "object graph"
  5959. ],
  5960. "time": "2018-06-11T23:09:50+00:00"
  5961. },
  5962. {
  5963. "name": "nunomaduro/collision",
  5964. "version": "v2.1.1",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/nunomaduro/collision.git",
  5968. "reference": "b5feb0c0d92978ec7169232ce5d70d6da6b29f63"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/b5feb0c0d92978ec7169232ce5d70d6da6b29f63",
  5973. "reference": "b5feb0c0d92978ec7169232ce5d70d6da6b29f63",
  5974. "shasum": ""
  5975. },
  5976. "require": {
  5977. "filp/whoops": "^2.1.4",
  5978. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  5979. "php": "^7.1",
  5980. "symfony/console": "~2.8|~3.3|~4.0"
  5981. },
  5982. "require-dev": {
  5983. "laravel/framework": "5.7.*",
  5984. "nunomaduro/larastan": "^0.3.0",
  5985. "phpstan/phpstan": "^0.10",
  5986. "phpunit/phpunit": "~7.3"
  5987. },
  5988. "type": "library",
  5989. "extra": {
  5990. "laravel": {
  5991. "providers": [
  5992. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5993. ]
  5994. }
  5995. },
  5996. "autoload": {
  5997. "psr-4": {
  5998. "NunoMaduro\\Collision\\": "src/"
  5999. }
  6000. },
  6001. "notification-url": "https://packagist.org/downloads/",
  6002. "license": [
  6003. "MIT"
  6004. ],
  6005. "authors": [
  6006. {
  6007. "name": "Nuno Maduro",
  6008. "email": "enunomaduro@gmail.com"
  6009. }
  6010. ],
  6011. "description": "Cli error handling for console/command-line PHP applications.",
  6012. "keywords": [
  6013. "artisan",
  6014. "cli",
  6015. "command-line",
  6016. "console",
  6017. "error",
  6018. "handling",
  6019. "laravel",
  6020. "laravel-zero",
  6021. "php",
  6022. "symfony"
  6023. ],
  6024. "time": "2018-11-21T21:40:54+00:00"
  6025. },
  6026. {
  6027. "name": "phar-io/manifest",
  6028. "version": "1.0.3",
  6029. "source": {
  6030. "type": "git",
  6031. "url": "https://github.com/phar-io/manifest.git",
  6032. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  6033. },
  6034. "dist": {
  6035. "type": "zip",
  6036. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6037. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6038. "shasum": ""
  6039. },
  6040. "require": {
  6041. "ext-dom": "*",
  6042. "ext-phar": "*",
  6043. "phar-io/version": "^2.0",
  6044. "php": "^5.6 || ^7.0"
  6045. },
  6046. "type": "library",
  6047. "extra": {
  6048. "branch-alias": {
  6049. "dev-master": "1.0.x-dev"
  6050. }
  6051. },
  6052. "autoload": {
  6053. "classmap": [
  6054. "src/"
  6055. ]
  6056. },
  6057. "notification-url": "https://packagist.org/downloads/",
  6058. "license": [
  6059. "BSD-3-Clause"
  6060. ],
  6061. "authors": [
  6062. {
  6063. "name": "Arne Blankerts",
  6064. "email": "arne@blankerts.de",
  6065. "role": "Developer"
  6066. },
  6067. {
  6068. "name": "Sebastian Heuer",
  6069. "email": "sebastian@phpeople.de",
  6070. "role": "Developer"
  6071. },
  6072. {
  6073. "name": "Sebastian Bergmann",
  6074. "email": "sebastian@phpunit.de",
  6075. "role": "Developer"
  6076. }
  6077. ],
  6078. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6079. "time": "2018-07-08T19:23:20+00:00"
  6080. },
  6081. {
  6082. "name": "phar-io/version",
  6083. "version": "2.0.1",
  6084. "source": {
  6085. "type": "git",
  6086. "url": "https://github.com/phar-io/version.git",
  6087. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  6088. },
  6089. "dist": {
  6090. "type": "zip",
  6091. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6092. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6093. "shasum": ""
  6094. },
  6095. "require": {
  6096. "php": "^5.6 || ^7.0"
  6097. },
  6098. "type": "library",
  6099. "autoload": {
  6100. "classmap": [
  6101. "src/"
  6102. ]
  6103. },
  6104. "notification-url": "https://packagist.org/downloads/",
  6105. "license": [
  6106. "BSD-3-Clause"
  6107. ],
  6108. "authors": [
  6109. {
  6110. "name": "Arne Blankerts",
  6111. "email": "arne@blankerts.de",
  6112. "role": "Developer"
  6113. },
  6114. {
  6115. "name": "Sebastian Heuer",
  6116. "email": "sebastian@phpeople.de",
  6117. "role": "Developer"
  6118. },
  6119. {
  6120. "name": "Sebastian Bergmann",
  6121. "email": "sebastian@phpunit.de",
  6122. "role": "Developer"
  6123. }
  6124. ],
  6125. "description": "Library for handling version information and constraints",
  6126. "time": "2018-07-08T19:19:57+00:00"
  6127. },
  6128. {
  6129. "name": "phpdocumentor/reflection-common",
  6130. "version": "1.0.1",
  6131. "source": {
  6132. "type": "git",
  6133. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6134. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  6135. },
  6136. "dist": {
  6137. "type": "zip",
  6138. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  6139. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  6140. "shasum": ""
  6141. },
  6142. "require": {
  6143. "php": ">=5.5"
  6144. },
  6145. "require-dev": {
  6146. "phpunit/phpunit": "^4.6"
  6147. },
  6148. "type": "library",
  6149. "extra": {
  6150. "branch-alias": {
  6151. "dev-master": "1.0.x-dev"
  6152. }
  6153. },
  6154. "autoload": {
  6155. "psr-4": {
  6156. "phpDocumentor\\Reflection\\": [
  6157. "src"
  6158. ]
  6159. }
  6160. },
  6161. "notification-url": "https://packagist.org/downloads/",
  6162. "license": [
  6163. "MIT"
  6164. ],
  6165. "authors": [
  6166. {
  6167. "name": "Jaap van Otterdijk",
  6168. "email": "opensource@ijaap.nl"
  6169. }
  6170. ],
  6171. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6172. "homepage": "http://www.phpdoc.org",
  6173. "keywords": [
  6174. "FQSEN",
  6175. "phpDocumentor",
  6176. "phpdoc",
  6177. "reflection",
  6178. "static analysis"
  6179. ],
  6180. "time": "2017-09-11T18:02:19+00:00"
  6181. },
  6182. {
  6183. "name": "phpdocumentor/reflection-docblock",
  6184. "version": "4.3.0",
  6185. "source": {
  6186. "type": "git",
  6187. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6188. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  6189. },
  6190. "dist": {
  6191. "type": "zip",
  6192. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  6193. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  6194. "shasum": ""
  6195. },
  6196. "require": {
  6197. "php": "^7.0",
  6198. "phpdocumentor/reflection-common": "^1.0.0",
  6199. "phpdocumentor/type-resolver": "^0.4.0",
  6200. "webmozart/assert": "^1.0"
  6201. },
  6202. "require-dev": {
  6203. "doctrine/instantiator": "~1.0.5",
  6204. "mockery/mockery": "^1.0",
  6205. "phpunit/phpunit": "^6.4"
  6206. },
  6207. "type": "library",
  6208. "extra": {
  6209. "branch-alias": {
  6210. "dev-master": "4.x-dev"
  6211. }
  6212. },
  6213. "autoload": {
  6214. "psr-4": {
  6215. "phpDocumentor\\Reflection\\": [
  6216. "src/"
  6217. ]
  6218. }
  6219. },
  6220. "notification-url": "https://packagist.org/downloads/",
  6221. "license": [
  6222. "MIT"
  6223. ],
  6224. "authors": [
  6225. {
  6226. "name": "Mike van Riel",
  6227. "email": "me@mikevanriel.com"
  6228. }
  6229. ],
  6230. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6231. "time": "2017-11-30T07:14:17+00:00"
  6232. },
  6233. {
  6234. "name": "phpdocumentor/type-resolver",
  6235. "version": "0.4.0",
  6236. "source": {
  6237. "type": "git",
  6238. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6239. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  6240. },
  6241. "dist": {
  6242. "type": "zip",
  6243. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  6244. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  6245. "shasum": ""
  6246. },
  6247. "require": {
  6248. "php": "^5.5 || ^7.0",
  6249. "phpdocumentor/reflection-common": "^1.0"
  6250. },
  6251. "require-dev": {
  6252. "mockery/mockery": "^0.9.4",
  6253. "phpunit/phpunit": "^5.2||^4.8.24"
  6254. },
  6255. "type": "library",
  6256. "extra": {
  6257. "branch-alias": {
  6258. "dev-master": "1.0.x-dev"
  6259. }
  6260. },
  6261. "autoload": {
  6262. "psr-4": {
  6263. "phpDocumentor\\Reflection\\": [
  6264. "src/"
  6265. ]
  6266. }
  6267. },
  6268. "notification-url": "https://packagist.org/downloads/",
  6269. "license": [
  6270. "MIT"
  6271. ],
  6272. "authors": [
  6273. {
  6274. "name": "Mike van Riel",
  6275. "email": "me@mikevanriel.com"
  6276. }
  6277. ],
  6278. "time": "2017-07-14T14:27:02+00:00"
  6279. },
  6280. {
  6281. "name": "phpspec/prophecy",
  6282. "version": "1.8.0",
  6283. "source": {
  6284. "type": "git",
  6285. "url": "https://github.com/phpspec/prophecy.git",
  6286. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  6287. },
  6288. "dist": {
  6289. "type": "zip",
  6290. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  6291. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  6292. "shasum": ""
  6293. },
  6294. "require": {
  6295. "doctrine/instantiator": "^1.0.2",
  6296. "php": "^5.3|^7.0",
  6297. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  6298. "sebastian/comparator": "^1.1|^2.0|^3.0",
  6299. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  6300. },
  6301. "require-dev": {
  6302. "phpspec/phpspec": "^2.5|^3.2",
  6303. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  6304. },
  6305. "type": "library",
  6306. "extra": {
  6307. "branch-alias": {
  6308. "dev-master": "1.8.x-dev"
  6309. }
  6310. },
  6311. "autoload": {
  6312. "psr-0": {
  6313. "Prophecy\\": "src/"
  6314. }
  6315. },
  6316. "notification-url": "https://packagist.org/downloads/",
  6317. "license": [
  6318. "MIT"
  6319. ],
  6320. "authors": [
  6321. {
  6322. "name": "Konstantin Kudryashov",
  6323. "email": "ever.zet@gmail.com",
  6324. "homepage": "http://everzet.com"
  6325. },
  6326. {
  6327. "name": "Marcello Duarte",
  6328. "email": "marcello.duarte@gmail.com"
  6329. }
  6330. ],
  6331. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6332. "homepage": "https://github.com/phpspec/prophecy",
  6333. "keywords": [
  6334. "Double",
  6335. "Dummy",
  6336. "fake",
  6337. "mock",
  6338. "spy",
  6339. "stub"
  6340. ],
  6341. "time": "2018-08-05T17:53:17+00:00"
  6342. },
  6343. {
  6344. "name": "phpunit/php-code-coverage",
  6345. "version": "6.1.4",
  6346. "source": {
  6347. "type": "git",
  6348. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6349. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  6350. },
  6351. "dist": {
  6352. "type": "zip",
  6353. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  6354. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  6355. "shasum": ""
  6356. },
  6357. "require": {
  6358. "ext-dom": "*",
  6359. "ext-xmlwriter": "*",
  6360. "php": "^7.1",
  6361. "phpunit/php-file-iterator": "^2.0",
  6362. "phpunit/php-text-template": "^1.2.1",
  6363. "phpunit/php-token-stream": "^3.0",
  6364. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  6365. "sebastian/environment": "^3.1 || ^4.0",
  6366. "sebastian/version": "^2.0.1",
  6367. "theseer/tokenizer": "^1.1"
  6368. },
  6369. "require-dev": {
  6370. "phpunit/phpunit": "^7.0"
  6371. },
  6372. "suggest": {
  6373. "ext-xdebug": "^2.6.0"
  6374. },
  6375. "type": "library",
  6376. "extra": {
  6377. "branch-alias": {
  6378. "dev-master": "6.1-dev"
  6379. }
  6380. },
  6381. "autoload": {
  6382. "classmap": [
  6383. "src/"
  6384. ]
  6385. },
  6386. "notification-url": "https://packagist.org/downloads/",
  6387. "license": [
  6388. "BSD-3-Clause"
  6389. ],
  6390. "authors": [
  6391. {
  6392. "name": "Sebastian Bergmann",
  6393. "email": "sebastian@phpunit.de",
  6394. "role": "lead"
  6395. }
  6396. ],
  6397. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6398. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6399. "keywords": [
  6400. "coverage",
  6401. "testing",
  6402. "xunit"
  6403. ],
  6404. "time": "2018-10-31T16:06:48+00:00"
  6405. },
  6406. {
  6407. "name": "phpunit/php-file-iterator",
  6408. "version": "2.0.2",
  6409. "source": {
  6410. "type": "git",
  6411. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6412. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  6413. },
  6414. "dist": {
  6415. "type": "zip",
  6416. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  6417. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  6418. "shasum": ""
  6419. },
  6420. "require": {
  6421. "php": "^7.1"
  6422. },
  6423. "require-dev": {
  6424. "phpunit/phpunit": "^7.1"
  6425. },
  6426. "type": "library",
  6427. "extra": {
  6428. "branch-alias": {
  6429. "dev-master": "2.0.x-dev"
  6430. }
  6431. },
  6432. "autoload": {
  6433. "classmap": [
  6434. "src/"
  6435. ]
  6436. },
  6437. "notification-url": "https://packagist.org/downloads/",
  6438. "license": [
  6439. "BSD-3-Clause"
  6440. ],
  6441. "authors": [
  6442. {
  6443. "name": "Sebastian Bergmann",
  6444. "email": "sebastian@phpunit.de",
  6445. "role": "lead"
  6446. }
  6447. ],
  6448. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6449. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6450. "keywords": [
  6451. "filesystem",
  6452. "iterator"
  6453. ],
  6454. "time": "2018-09-13T20:33:42+00:00"
  6455. },
  6456. {
  6457. "name": "phpunit/php-text-template",
  6458. "version": "1.2.1",
  6459. "source": {
  6460. "type": "git",
  6461. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6462. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  6463. },
  6464. "dist": {
  6465. "type": "zip",
  6466. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6467. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6468. "shasum": ""
  6469. },
  6470. "require": {
  6471. "php": ">=5.3.3"
  6472. },
  6473. "type": "library",
  6474. "autoload": {
  6475. "classmap": [
  6476. "src/"
  6477. ]
  6478. },
  6479. "notification-url": "https://packagist.org/downloads/",
  6480. "license": [
  6481. "BSD-3-Clause"
  6482. ],
  6483. "authors": [
  6484. {
  6485. "name": "Sebastian Bergmann",
  6486. "email": "sebastian@phpunit.de",
  6487. "role": "lead"
  6488. }
  6489. ],
  6490. "description": "Simple template engine.",
  6491. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6492. "keywords": [
  6493. "template"
  6494. ],
  6495. "time": "2015-06-21T13:50:34+00:00"
  6496. },
  6497. {
  6498. "name": "phpunit/php-timer",
  6499. "version": "2.1.1",
  6500. "source": {
  6501. "type": "git",
  6502. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6503. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059"
  6504. },
  6505. "dist": {
  6506. "type": "zip",
  6507. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b389aebe1b8b0578430bda0c7c95a829608e059",
  6508. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059",
  6509. "shasum": ""
  6510. },
  6511. "require": {
  6512. "php": "^7.1"
  6513. },
  6514. "require-dev": {
  6515. "phpunit/phpunit": "^7.0"
  6516. },
  6517. "type": "library",
  6518. "extra": {
  6519. "branch-alias": {
  6520. "dev-master": "2.1-dev"
  6521. }
  6522. },
  6523. "autoload": {
  6524. "classmap": [
  6525. "src/"
  6526. ]
  6527. },
  6528. "notification-url": "https://packagist.org/downloads/",
  6529. "license": [
  6530. "BSD-3-Clause"
  6531. ],
  6532. "authors": [
  6533. {
  6534. "name": "Sebastian Bergmann",
  6535. "email": "sebastian@phpunit.de",
  6536. "role": "lead"
  6537. }
  6538. ],
  6539. "description": "Utility class for timing",
  6540. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6541. "keywords": [
  6542. "timer"
  6543. ],
  6544. "time": "2019-02-20T10:12:59+00:00"
  6545. },
  6546. {
  6547. "name": "phpunit/php-token-stream",
  6548. "version": "3.0.1",
  6549. "source": {
  6550. "type": "git",
  6551. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  6552. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18"
  6553. },
  6554. "dist": {
  6555. "type": "zip",
  6556. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/c99e3be9d3e85f60646f152f9002d46ed7770d18",
  6557. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18",
  6558. "shasum": ""
  6559. },
  6560. "require": {
  6561. "ext-tokenizer": "*",
  6562. "php": "^7.1"
  6563. },
  6564. "require-dev": {
  6565. "phpunit/phpunit": "^7.0"
  6566. },
  6567. "type": "library",
  6568. "extra": {
  6569. "branch-alias": {
  6570. "dev-master": "3.0-dev"
  6571. }
  6572. },
  6573. "autoload": {
  6574. "classmap": [
  6575. "src/"
  6576. ]
  6577. },
  6578. "notification-url": "https://packagist.org/downloads/",
  6579. "license": [
  6580. "BSD-3-Clause"
  6581. ],
  6582. "authors": [
  6583. {
  6584. "name": "Sebastian Bergmann",
  6585. "email": "sebastian@phpunit.de"
  6586. }
  6587. ],
  6588. "description": "Wrapper around PHP's tokenizer extension.",
  6589. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  6590. "keywords": [
  6591. "tokenizer"
  6592. ],
  6593. "time": "2018-10-30T05:52:18+00:00"
  6594. },
  6595. {
  6596. "name": "phpunit/phpunit",
  6597. "version": "7.5.6",
  6598. "source": {
  6599. "type": "git",
  6600. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6601. "reference": "09c85e14994df92e5ff1f5ec0b481bdb7d3d3df9"
  6602. },
  6603. "dist": {
  6604. "type": "zip",
  6605. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/09c85e14994df92e5ff1f5ec0b481bdb7d3d3df9",
  6606. "reference": "09c85e14994df92e5ff1f5ec0b481bdb7d3d3df9",
  6607. "shasum": ""
  6608. },
  6609. "require": {
  6610. "doctrine/instantiator": "^1.1",
  6611. "ext-dom": "*",
  6612. "ext-json": "*",
  6613. "ext-libxml": "*",
  6614. "ext-mbstring": "*",
  6615. "ext-xml": "*",
  6616. "myclabs/deep-copy": "^1.7",
  6617. "phar-io/manifest": "^1.0.2",
  6618. "phar-io/version": "^2.0",
  6619. "php": "^7.1",
  6620. "phpspec/prophecy": "^1.7",
  6621. "phpunit/php-code-coverage": "^6.0.7",
  6622. "phpunit/php-file-iterator": "^2.0.1",
  6623. "phpunit/php-text-template": "^1.2.1",
  6624. "phpunit/php-timer": "^2.0",
  6625. "sebastian/comparator": "^3.0",
  6626. "sebastian/diff": "^3.0",
  6627. "sebastian/environment": "^4.0",
  6628. "sebastian/exporter": "^3.1",
  6629. "sebastian/global-state": "^2.0",
  6630. "sebastian/object-enumerator": "^3.0.3",
  6631. "sebastian/resource-operations": "^2.0",
  6632. "sebastian/version": "^2.0.1"
  6633. },
  6634. "conflict": {
  6635. "phpunit/phpunit-mock-objects": "*"
  6636. },
  6637. "require-dev": {
  6638. "ext-pdo": "*"
  6639. },
  6640. "suggest": {
  6641. "ext-soap": "*",
  6642. "ext-xdebug": "*",
  6643. "phpunit/php-invoker": "^2.0"
  6644. },
  6645. "bin": [
  6646. "phpunit"
  6647. ],
  6648. "type": "library",
  6649. "extra": {
  6650. "branch-alias": {
  6651. "dev-master": "7.5-dev"
  6652. }
  6653. },
  6654. "autoload": {
  6655. "classmap": [
  6656. "src/"
  6657. ]
  6658. },
  6659. "notification-url": "https://packagist.org/downloads/",
  6660. "license": [
  6661. "BSD-3-Clause"
  6662. ],
  6663. "authors": [
  6664. {
  6665. "name": "Sebastian Bergmann",
  6666. "email": "sebastian@phpunit.de",
  6667. "role": "lead"
  6668. }
  6669. ],
  6670. "description": "The PHP Unit Testing framework.",
  6671. "homepage": "https://phpunit.de/",
  6672. "keywords": [
  6673. "phpunit",
  6674. "testing",
  6675. "xunit"
  6676. ],
  6677. "time": "2019-02-18T09:24:50+00:00"
  6678. },
  6679. {
  6680. "name": "sebastian/code-unit-reverse-lookup",
  6681. "version": "1.0.1",
  6682. "source": {
  6683. "type": "git",
  6684. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6685. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  6686. },
  6687. "dist": {
  6688. "type": "zip",
  6689. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6690. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6691. "shasum": ""
  6692. },
  6693. "require": {
  6694. "php": "^5.6 || ^7.0"
  6695. },
  6696. "require-dev": {
  6697. "phpunit/phpunit": "^5.7 || ^6.0"
  6698. },
  6699. "type": "library",
  6700. "extra": {
  6701. "branch-alias": {
  6702. "dev-master": "1.0.x-dev"
  6703. }
  6704. },
  6705. "autoload": {
  6706. "classmap": [
  6707. "src/"
  6708. ]
  6709. },
  6710. "notification-url": "https://packagist.org/downloads/",
  6711. "license": [
  6712. "BSD-3-Clause"
  6713. ],
  6714. "authors": [
  6715. {
  6716. "name": "Sebastian Bergmann",
  6717. "email": "sebastian@phpunit.de"
  6718. }
  6719. ],
  6720. "description": "Looks up which function or method a line of code belongs to",
  6721. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6722. "time": "2017-03-04T06:30:41+00:00"
  6723. },
  6724. {
  6725. "name": "sebastian/comparator",
  6726. "version": "3.0.2",
  6727. "source": {
  6728. "type": "git",
  6729. "url": "https://github.com/sebastianbergmann/comparator.git",
  6730. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  6731. },
  6732. "dist": {
  6733. "type": "zip",
  6734. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6735. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6736. "shasum": ""
  6737. },
  6738. "require": {
  6739. "php": "^7.1",
  6740. "sebastian/diff": "^3.0",
  6741. "sebastian/exporter": "^3.1"
  6742. },
  6743. "require-dev": {
  6744. "phpunit/phpunit": "^7.1"
  6745. },
  6746. "type": "library",
  6747. "extra": {
  6748. "branch-alias": {
  6749. "dev-master": "3.0-dev"
  6750. }
  6751. },
  6752. "autoload": {
  6753. "classmap": [
  6754. "src/"
  6755. ]
  6756. },
  6757. "notification-url": "https://packagist.org/downloads/",
  6758. "license": [
  6759. "BSD-3-Clause"
  6760. ],
  6761. "authors": [
  6762. {
  6763. "name": "Jeff Welch",
  6764. "email": "whatthejeff@gmail.com"
  6765. },
  6766. {
  6767. "name": "Volker Dusch",
  6768. "email": "github@wallbash.com"
  6769. },
  6770. {
  6771. "name": "Bernhard Schussek",
  6772. "email": "bschussek@2bepublished.at"
  6773. },
  6774. {
  6775. "name": "Sebastian Bergmann",
  6776. "email": "sebastian@phpunit.de"
  6777. }
  6778. ],
  6779. "description": "Provides the functionality to compare PHP values for equality",
  6780. "homepage": "https://github.com/sebastianbergmann/comparator",
  6781. "keywords": [
  6782. "comparator",
  6783. "compare",
  6784. "equality"
  6785. ],
  6786. "time": "2018-07-12T15:12:46+00:00"
  6787. },
  6788. {
  6789. "name": "sebastian/diff",
  6790. "version": "3.0.2",
  6791. "source": {
  6792. "type": "git",
  6793. "url": "https://github.com/sebastianbergmann/diff.git",
  6794. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  6795. },
  6796. "dist": {
  6797. "type": "zip",
  6798. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6799. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6800. "shasum": ""
  6801. },
  6802. "require": {
  6803. "php": "^7.1"
  6804. },
  6805. "require-dev": {
  6806. "phpunit/phpunit": "^7.5 || ^8.0",
  6807. "symfony/process": "^2 || ^3.3 || ^4"
  6808. },
  6809. "type": "library",
  6810. "extra": {
  6811. "branch-alias": {
  6812. "dev-master": "3.0-dev"
  6813. }
  6814. },
  6815. "autoload": {
  6816. "classmap": [
  6817. "src/"
  6818. ]
  6819. },
  6820. "notification-url": "https://packagist.org/downloads/",
  6821. "license": [
  6822. "BSD-3-Clause"
  6823. ],
  6824. "authors": [
  6825. {
  6826. "name": "Kore Nordmann",
  6827. "email": "mail@kore-nordmann.de"
  6828. },
  6829. {
  6830. "name": "Sebastian Bergmann",
  6831. "email": "sebastian@phpunit.de"
  6832. }
  6833. ],
  6834. "description": "Diff implementation",
  6835. "homepage": "https://github.com/sebastianbergmann/diff",
  6836. "keywords": [
  6837. "diff",
  6838. "udiff",
  6839. "unidiff",
  6840. "unified diff"
  6841. ],
  6842. "time": "2019-02-04T06:01:07+00:00"
  6843. },
  6844. {
  6845. "name": "sebastian/environment",
  6846. "version": "4.1.0",
  6847. "source": {
  6848. "type": "git",
  6849. "url": "https://github.com/sebastianbergmann/environment.git",
  6850. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656"
  6851. },
  6852. "dist": {
  6853. "type": "zip",
  6854. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6fda8ce1974b62b14935adc02a9ed38252eca656",
  6855. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656",
  6856. "shasum": ""
  6857. },
  6858. "require": {
  6859. "php": "^7.1"
  6860. },
  6861. "require-dev": {
  6862. "phpunit/phpunit": "^7.5"
  6863. },
  6864. "suggest": {
  6865. "ext-posix": "*"
  6866. },
  6867. "type": "library",
  6868. "extra": {
  6869. "branch-alias": {
  6870. "dev-master": "4.1-dev"
  6871. }
  6872. },
  6873. "autoload": {
  6874. "classmap": [
  6875. "src/"
  6876. ]
  6877. },
  6878. "notification-url": "https://packagist.org/downloads/",
  6879. "license": [
  6880. "BSD-3-Clause"
  6881. ],
  6882. "authors": [
  6883. {
  6884. "name": "Sebastian Bergmann",
  6885. "email": "sebastian@phpunit.de"
  6886. }
  6887. ],
  6888. "description": "Provides functionality to handle HHVM/PHP environments",
  6889. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6890. "keywords": [
  6891. "Xdebug",
  6892. "environment",
  6893. "hhvm"
  6894. ],
  6895. "time": "2019-02-01T05:27:49+00:00"
  6896. },
  6897. {
  6898. "name": "sebastian/exporter",
  6899. "version": "3.1.0",
  6900. "source": {
  6901. "type": "git",
  6902. "url": "https://github.com/sebastianbergmann/exporter.git",
  6903. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  6904. },
  6905. "dist": {
  6906. "type": "zip",
  6907. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  6908. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  6909. "shasum": ""
  6910. },
  6911. "require": {
  6912. "php": "^7.0",
  6913. "sebastian/recursion-context": "^3.0"
  6914. },
  6915. "require-dev": {
  6916. "ext-mbstring": "*",
  6917. "phpunit/phpunit": "^6.0"
  6918. },
  6919. "type": "library",
  6920. "extra": {
  6921. "branch-alias": {
  6922. "dev-master": "3.1.x-dev"
  6923. }
  6924. },
  6925. "autoload": {
  6926. "classmap": [
  6927. "src/"
  6928. ]
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "BSD-3-Clause"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "Jeff Welch",
  6937. "email": "whatthejeff@gmail.com"
  6938. },
  6939. {
  6940. "name": "Volker Dusch",
  6941. "email": "github@wallbash.com"
  6942. },
  6943. {
  6944. "name": "Bernhard Schussek",
  6945. "email": "bschussek@2bepublished.at"
  6946. },
  6947. {
  6948. "name": "Sebastian Bergmann",
  6949. "email": "sebastian@phpunit.de"
  6950. },
  6951. {
  6952. "name": "Adam Harvey",
  6953. "email": "aharvey@php.net"
  6954. }
  6955. ],
  6956. "description": "Provides the functionality to export PHP variables for visualization",
  6957. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6958. "keywords": [
  6959. "export",
  6960. "exporter"
  6961. ],
  6962. "time": "2017-04-03T13:19:02+00:00"
  6963. },
  6964. {
  6965. "name": "sebastian/global-state",
  6966. "version": "2.0.0",
  6967. "source": {
  6968. "type": "git",
  6969. "url": "https://github.com/sebastianbergmann/global-state.git",
  6970. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  6971. },
  6972. "dist": {
  6973. "type": "zip",
  6974. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6975. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6976. "shasum": ""
  6977. },
  6978. "require": {
  6979. "php": "^7.0"
  6980. },
  6981. "require-dev": {
  6982. "phpunit/phpunit": "^6.0"
  6983. },
  6984. "suggest": {
  6985. "ext-uopz": "*"
  6986. },
  6987. "type": "library",
  6988. "extra": {
  6989. "branch-alias": {
  6990. "dev-master": "2.0-dev"
  6991. }
  6992. },
  6993. "autoload": {
  6994. "classmap": [
  6995. "src/"
  6996. ]
  6997. },
  6998. "notification-url": "https://packagist.org/downloads/",
  6999. "license": [
  7000. "BSD-3-Clause"
  7001. ],
  7002. "authors": [
  7003. {
  7004. "name": "Sebastian Bergmann",
  7005. "email": "sebastian@phpunit.de"
  7006. }
  7007. ],
  7008. "description": "Snapshotting of global state",
  7009. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7010. "keywords": [
  7011. "global state"
  7012. ],
  7013. "time": "2017-04-27T15:39:26+00:00"
  7014. },
  7015. {
  7016. "name": "sebastian/object-enumerator",
  7017. "version": "3.0.3",
  7018. "source": {
  7019. "type": "git",
  7020. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7021. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  7022. },
  7023. "dist": {
  7024. "type": "zip",
  7025. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7026. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7027. "shasum": ""
  7028. },
  7029. "require": {
  7030. "php": "^7.0",
  7031. "sebastian/object-reflector": "^1.1.1",
  7032. "sebastian/recursion-context": "^3.0"
  7033. },
  7034. "require-dev": {
  7035. "phpunit/phpunit": "^6.0"
  7036. },
  7037. "type": "library",
  7038. "extra": {
  7039. "branch-alias": {
  7040. "dev-master": "3.0.x-dev"
  7041. }
  7042. },
  7043. "autoload": {
  7044. "classmap": [
  7045. "src/"
  7046. ]
  7047. },
  7048. "notification-url": "https://packagist.org/downloads/",
  7049. "license": [
  7050. "BSD-3-Clause"
  7051. ],
  7052. "authors": [
  7053. {
  7054. "name": "Sebastian Bergmann",
  7055. "email": "sebastian@phpunit.de"
  7056. }
  7057. ],
  7058. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7059. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7060. "time": "2017-08-03T12:35:26+00:00"
  7061. },
  7062. {
  7063. "name": "sebastian/object-reflector",
  7064. "version": "1.1.1",
  7065. "source": {
  7066. "type": "git",
  7067. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7068. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  7069. },
  7070. "dist": {
  7071. "type": "zip",
  7072. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  7073. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  7074. "shasum": ""
  7075. },
  7076. "require": {
  7077. "php": "^7.0"
  7078. },
  7079. "require-dev": {
  7080. "phpunit/phpunit": "^6.0"
  7081. },
  7082. "type": "library",
  7083. "extra": {
  7084. "branch-alias": {
  7085. "dev-master": "1.1-dev"
  7086. }
  7087. },
  7088. "autoload": {
  7089. "classmap": [
  7090. "src/"
  7091. ]
  7092. },
  7093. "notification-url": "https://packagist.org/downloads/",
  7094. "license": [
  7095. "BSD-3-Clause"
  7096. ],
  7097. "authors": [
  7098. {
  7099. "name": "Sebastian Bergmann",
  7100. "email": "sebastian@phpunit.de"
  7101. }
  7102. ],
  7103. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7104. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7105. "time": "2017-03-29T09:07:27+00:00"
  7106. },
  7107. {
  7108. "name": "sebastian/recursion-context",
  7109. "version": "3.0.0",
  7110. "source": {
  7111. "type": "git",
  7112. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7113. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  7114. },
  7115. "dist": {
  7116. "type": "zip",
  7117. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7118. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7119. "shasum": ""
  7120. },
  7121. "require": {
  7122. "php": "^7.0"
  7123. },
  7124. "require-dev": {
  7125. "phpunit/phpunit": "^6.0"
  7126. },
  7127. "type": "library",
  7128. "extra": {
  7129. "branch-alias": {
  7130. "dev-master": "3.0.x-dev"
  7131. }
  7132. },
  7133. "autoload": {
  7134. "classmap": [
  7135. "src/"
  7136. ]
  7137. },
  7138. "notification-url": "https://packagist.org/downloads/",
  7139. "license": [
  7140. "BSD-3-Clause"
  7141. ],
  7142. "authors": [
  7143. {
  7144. "name": "Jeff Welch",
  7145. "email": "whatthejeff@gmail.com"
  7146. },
  7147. {
  7148. "name": "Sebastian Bergmann",
  7149. "email": "sebastian@phpunit.de"
  7150. },
  7151. {
  7152. "name": "Adam Harvey",
  7153. "email": "aharvey@php.net"
  7154. }
  7155. ],
  7156. "description": "Provides functionality to recursively process PHP variables",
  7157. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7158. "time": "2017-03-03T06:23:57+00:00"
  7159. },
  7160. {
  7161. "name": "sebastian/resource-operations",
  7162. "version": "2.0.1",
  7163. "source": {
  7164. "type": "git",
  7165. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7166. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  7167. },
  7168. "dist": {
  7169. "type": "zip",
  7170. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7171. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7172. "shasum": ""
  7173. },
  7174. "require": {
  7175. "php": "^7.1"
  7176. },
  7177. "type": "library",
  7178. "extra": {
  7179. "branch-alias": {
  7180. "dev-master": "2.0-dev"
  7181. }
  7182. },
  7183. "autoload": {
  7184. "classmap": [
  7185. "src/"
  7186. ]
  7187. },
  7188. "notification-url": "https://packagist.org/downloads/",
  7189. "license": [
  7190. "BSD-3-Clause"
  7191. ],
  7192. "authors": [
  7193. {
  7194. "name": "Sebastian Bergmann",
  7195. "email": "sebastian@phpunit.de"
  7196. }
  7197. ],
  7198. "description": "Provides a list of PHP built-in functions that operate on resources",
  7199. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7200. "time": "2018-10-04T04:07:39+00:00"
  7201. },
  7202. {
  7203. "name": "sebastian/version",
  7204. "version": "2.0.1",
  7205. "source": {
  7206. "type": "git",
  7207. "url": "https://github.com/sebastianbergmann/version.git",
  7208. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  7209. },
  7210. "dist": {
  7211. "type": "zip",
  7212. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  7213. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  7214. "shasum": ""
  7215. },
  7216. "require": {
  7217. "php": ">=5.6"
  7218. },
  7219. "type": "library",
  7220. "extra": {
  7221. "branch-alias": {
  7222. "dev-master": "2.0.x-dev"
  7223. }
  7224. },
  7225. "autoload": {
  7226. "classmap": [
  7227. "src/"
  7228. ]
  7229. },
  7230. "notification-url": "https://packagist.org/downloads/",
  7231. "license": [
  7232. "BSD-3-Clause"
  7233. ],
  7234. "authors": [
  7235. {
  7236. "name": "Sebastian Bergmann",
  7237. "email": "sebastian@phpunit.de",
  7238. "role": "lead"
  7239. }
  7240. ],
  7241. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7242. "homepage": "https://github.com/sebastianbergmann/version",
  7243. "time": "2016-10-03T07:35:21+00:00"
  7244. },
  7245. {
  7246. "name": "theseer/tokenizer",
  7247. "version": "1.1.0",
  7248. "source": {
  7249. "type": "git",
  7250. "url": "https://github.com/theseer/tokenizer.git",
  7251. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  7252. },
  7253. "dist": {
  7254. "type": "zip",
  7255. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  7256. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  7257. "shasum": ""
  7258. },
  7259. "require": {
  7260. "ext-dom": "*",
  7261. "ext-tokenizer": "*",
  7262. "ext-xmlwriter": "*",
  7263. "php": "^7.0"
  7264. },
  7265. "type": "library",
  7266. "autoload": {
  7267. "classmap": [
  7268. "src/"
  7269. ]
  7270. },
  7271. "notification-url": "https://packagist.org/downloads/",
  7272. "license": [
  7273. "BSD-3-Clause"
  7274. ],
  7275. "authors": [
  7276. {
  7277. "name": "Arne Blankerts",
  7278. "email": "arne@blankerts.de",
  7279. "role": "Developer"
  7280. }
  7281. ],
  7282. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7283. "time": "2017-04-07T12:08:54+00:00"
  7284. },
  7285. {
  7286. "name": "webmozart/assert",
  7287. "version": "1.4.0",
  7288. "source": {
  7289. "type": "git",
  7290. "url": "https://github.com/webmozart/assert.git",
  7291. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  7292. },
  7293. "dist": {
  7294. "type": "zip",
  7295. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  7296. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  7297. "shasum": ""
  7298. },
  7299. "require": {
  7300. "php": "^5.3.3 || ^7.0",
  7301. "symfony/polyfill-ctype": "^1.8"
  7302. },
  7303. "require-dev": {
  7304. "phpunit/phpunit": "^4.6",
  7305. "sebastian/version": "^1.0.1"
  7306. },
  7307. "type": "library",
  7308. "extra": {
  7309. "branch-alias": {
  7310. "dev-master": "1.3-dev"
  7311. }
  7312. },
  7313. "autoload": {
  7314. "psr-4": {
  7315. "Webmozart\\Assert\\": "src/"
  7316. }
  7317. },
  7318. "notification-url": "https://packagist.org/downloads/",
  7319. "license": [
  7320. "MIT"
  7321. ],
  7322. "authors": [
  7323. {
  7324. "name": "Bernhard Schussek",
  7325. "email": "bschussek@gmail.com"
  7326. }
  7327. ],
  7328. "description": "Assertions to validate method input/output with nice error messages.",
  7329. "keywords": [
  7330. "assert",
  7331. "check",
  7332. "validate"
  7333. ],
  7334. "time": "2018-12-25T11:19:39+00:00"
  7335. }
  7336. ],
  7337. "aliases": [],
  7338. "minimum-stability": "dev",
  7339. "stability-flags": {
  7340. "greggilbert/recaptcha": 20
  7341. },
  7342. "prefer-stable": true,
  7343. "prefer-lowest": false,
  7344. "platform": {
  7345. "php": "^7.1.3",
  7346. "ext-bcmath": "*",
  7347. "ext-ctype": "*",
  7348. "ext-curl": "*",
  7349. "ext-json": "*",
  7350. "ext-mbstring": "*",
  7351. "ext-openssl": "*"
  7352. },
  7353. "platform-dev": []
  7354. }