composer.lock 146 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155
  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": "ca4f53441305ffa3e09c532006fa9c19",
  8. "packages": [
  9. {
  10. "name": "adldap2/adldap2",
  11. "version": "v10.4.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Adldap2/Adldap2.git",
  15. "reference": "81aeb283f56e216ae925a9cc4241de56b1fd4453"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Adldap2/Adldap2/zipball/81aeb283f56e216ae925a9cc4241de56b1fd4453",
  20. "reference": "81aeb283f56e216ae925a9cc4241de56b1fd4453",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "ext-ldap": "*",
  26. "illuminate/contracts": "~5.0|~6.0|~7.0|~8.0|~9.0",
  27. "php": ">=7.0",
  28. "psr/log": "~1.0|~2.0|~3.0",
  29. "psr/simple-cache": "~1.0|~2.0",
  30. "tightenco/collect": "~5.0|~6.0|~7.0|~8.0"
  31. },
  32. "require-dev": {
  33. "mockery/mockery": "~1.0",
  34. "symfony/phpunit-bridge": "~5.2|~6.0"
  35. },
  36. "suggest": {
  37. "ext-fileinfo": "fileinfo is required when retrieving user encoded thumbnails"
  38. },
  39. "type": "library",
  40. "autoload": {
  41. "psr-4": {
  42. "Adldap\\": "src/"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Steve Bauman",
  52. "email": "steven_bauman@outlook.com",
  53. "role": "Developer"
  54. }
  55. ],
  56. "description": "A PHP LDAP Package for humans.",
  57. "keywords": [
  58. "active directory",
  59. "ad",
  60. "adLDAP",
  61. "adldap2",
  62. "directory",
  63. "ldap",
  64. "windows"
  65. ],
  66. "support": {
  67. "docs": "https://github.com/Adldap2/Adldap2/blob/master/readme.md",
  68. "email": "steven_bauman@outlook.com",
  69. "issues": "https://github.com/Adldap2/Adldap2/issues",
  70. "source": "https://github.com/Adldap2/Adldap2"
  71. },
  72. "time": "2022-02-09T13:54:20+00:00"
  73. },
  74. {
  75. "name": "bcremer/line-reader",
  76. "version": "1.1.0",
  77. "source": {
  78. "type": "git",
  79. "url": "https://github.com/bcremer/LineReader.git",
  80. "reference": "3ec3e200577630f1e58d30b4c1c468b877d8d0a7"
  81. },
  82. "dist": {
  83. "type": "zip",
  84. "url": "https://api.github.com/repos/bcremer/LineReader/zipball/3ec3e200577630f1e58d30b4c1c468b877d8d0a7",
  85. "reference": "3ec3e200577630f1e58d30b4c1c468b877d8d0a7",
  86. "shasum": ""
  87. },
  88. "require": {
  89. "php": "^7.3|^7.4|^8.0"
  90. },
  91. "require-dev": {
  92. "infection/infection": "^0.18",
  93. "phpunit/phpunit": "^9.4"
  94. },
  95. "type": "library",
  96. "autoload": {
  97. "psr-4": {
  98. "Bcremer\\LineReader\\": "src/"
  99. }
  100. },
  101. "notification-url": "https://packagist.org/downloads/",
  102. "license": [
  103. "MIT"
  104. ],
  105. "authors": [
  106. {
  107. "name": "Benjamin Cremer",
  108. "email": "bc@benjamin-cremer.de"
  109. }
  110. ],
  111. "description": "Read large files line by line in a memory efficient (constant) way.",
  112. "support": {
  113. "issues": "https://github.com/bcremer/LineReader/issues",
  114. "source": "https://github.com/bcremer/LineReader/tree/1.1.0"
  115. },
  116. "time": "2020-12-08T13:58:53+00:00"
  117. },
  118. {
  119. "name": "bogstag/oauth2-trakt",
  120. "version": "v1.0.1",
  121. "source": {
  122. "type": "git",
  123. "url": "https://github.com/Bogstag/oauth2-trakt.git",
  124. "reference": "fbb9253d9e317e84dc2b3f1253afc1dcbb4414a2"
  125. },
  126. "dist": {
  127. "type": "zip",
  128. "url": "https://api.github.com/repos/Bogstag/oauth2-trakt/zipball/fbb9253d9e317e84dc2b3f1253afc1dcbb4414a2",
  129. "reference": "fbb9253d9e317e84dc2b3f1253afc1dcbb4414a2",
  130. "shasum": ""
  131. },
  132. "require": {
  133. "league/oauth2-client": "^2.0",
  134. "php": ">=5.6.0"
  135. },
  136. "require-dev": {
  137. "mockery/mockery": "~0.9",
  138. "phpunit/phpunit": "^5.0",
  139. "squizlabs/php_codesniffer": "~2.0"
  140. },
  141. "type": "library",
  142. "autoload": {
  143. "psr-4": {
  144. "Bogstag\\OAuth2\\Client\\": "src/"
  145. }
  146. },
  147. "notification-url": "https://packagist.org/downloads/",
  148. "license": [
  149. "MIT"
  150. ],
  151. "authors": [
  152. {
  153. "name": "Bogstag",
  154. "email": "krister@bogstag.se",
  155. "homepage": "https://github.com/bogstag"
  156. }
  157. ],
  158. "description": "trakt.tv OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
  159. "keywords": [
  160. "Authentication",
  161. "authorization",
  162. "client",
  163. "oauth",
  164. "oauth2",
  165. "trakt"
  166. ],
  167. "support": {
  168. "issues": "https://github.com/Bogstag/oauth2-trakt/issues",
  169. "source": "https://github.com/Bogstag/oauth2-trakt/tree/master"
  170. },
  171. "time": "2017-02-26T18:30:14+00:00"
  172. },
  173. {
  174. "name": "brick/math",
  175. "version": "0.9.3",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/brick/math.git",
  179. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  184. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  185. "shasum": ""
  186. },
  187. "require": {
  188. "ext-json": "*",
  189. "php": "^7.1 || ^8.0"
  190. },
  191. "require-dev": {
  192. "php-coveralls/php-coveralls": "^2.2",
  193. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  194. "vimeo/psalm": "4.9.2"
  195. },
  196. "type": "library",
  197. "autoload": {
  198. "psr-4": {
  199. "Brick\\Math\\": "src/"
  200. }
  201. },
  202. "notification-url": "https://packagist.org/downloads/",
  203. "license": [
  204. "MIT"
  205. ],
  206. "description": "Arbitrary-precision arithmetic library",
  207. "keywords": [
  208. "Arbitrary-precision",
  209. "BigInteger",
  210. "BigRational",
  211. "arithmetic",
  212. "bigdecimal",
  213. "bignum",
  214. "brick",
  215. "math"
  216. ],
  217. "support": {
  218. "issues": "https://github.com/brick/math/issues",
  219. "source": "https://github.com/brick/math/tree/0.9.3"
  220. },
  221. "funding": [
  222. {
  223. "url": "https://github.com/BenMorel",
  224. "type": "github"
  225. },
  226. {
  227. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  228. "type": "tidelift"
  229. }
  230. ],
  231. "time": "2021-08-15T20:50:18+00:00"
  232. },
  233. {
  234. "name": "composer/semver",
  235. "version": "1.7.2",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/composer/semver.git",
  239. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
  244. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "^5.3.2 || ^7.0 || ^8.0"
  249. },
  250. "require-dev": {
  251. "phpunit/phpunit": "^4.5 || ^5.0.5"
  252. },
  253. "type": "library",
  254. "extra": {
  255. "branch-alias": {
  256. "dev-master": "1.x-dev"
  257. }
  258. },
  259. "autoload": {
  260. "psr-4": {
  261. "Composer\\Semver\\": "src"
  262. }
  263. },
  264. "notification-url": "https://packagist.org/downloads/",
  265. "license": [
  266. "MIT"
  267. ],
  268. "authors": [
  269. {
  270. "name": "Nils Adermann",
  271. "email": "naderman@naderman.de",
  272. "homepage": "http://www.naderman.de"
  273. },
  274. {
  275. "name": "Jordi Boggiano",
  276. "email": "j.boggiano@seld.be",
  277. "homepage": "http://seld.be"
  278. },
  279. {
  280. "name": "Rob Bast",
  281. "email": "rob.bast@gmail.com",
  282. "homepage": "http://robbast.nl"
  283. }
  284. ],
  285. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  286. "keywords": [
  287. "semantic",
  288. "semver",
  289. "validation",
  290. "versioning"
  291. ],
  292. "support": {
  293. "irc": "irc://irc.freenode.org/composer",
  294. "issues": "https://github.com/composer/semver/issues",
  295. "source": "https://github.com/composer/semver/tree/1.7.2"
  296. },
  297. "funding": [
  298. {
  299. "url": "https://packagist.com",
  300. "type": "custom"
  301. },
  302. {
  303. "url": "https://github.com/composer",
  304. "type": "github"
  305. },
  306. {
  307. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  308. "type": "tidelift"
  309. }
  310. ],
  311. "time": "2020-12-03T15:47:16+00:00"
  312. },
  313. {
  314. "name": "dibi/dibi",
  315. "version": "v4.2.6",
  316. "source": {
  317. "type": "git",
  318. "url": "https://github.com/dg/dibi.git",
  319. "reference": "9d5d430d3d04ad8aff0e1570390e9cfbb7f3c538"
  320. },
  321. "dist": {
  322. "type": "zip",
  323. "url": "https://api.github.com/repos/dg/dibi/zipball/9d5d430d3d04ad8aff0e1570390e9cfbb7f3c538",
  324. "reference": "9d5d430d3d04ad8aff0e1570390e9cfbb7f3c538",
  325. "shasum": ""
  326. },
  327. "require": {
  328. "php": ">=7.2"
  329. },
  330. "replace": {
  331. "dg/dibi": "*"
  332. },
  333. "require-dev": {
  334. "nette/di": "^3.0",
  335. "nette/tester": "~2.0",
  336. "phpstan/phpstan": "^0.12",
  337. "tracy/tracy": "~2.2"
  338. },
  339. "type": "library",
  340. "extra": {
  341. "branch-alias": {
  342. "dev-master": "4.2-dev"
  343. }
  344. },
  345. "autoload": {
  346. "classmap": [
  347. "src/"
  348. ]
  349. },
  350. "notification-url": "https://packagist.org/downloads/",
  351. "license": [
  352. "BSD-3-Clause",
  353. "GPL-2.0-only",
  354. "GPL-3.0-only"
  355. ],
  356. "authors": [
  357. {
  358. "name": "David Grudl",
  359. "homepage": "https://davidgrudl.com"
  360. }
  361. ],
  362. "description": "Dibi is Database Abstraction Library for PHP",
  363. "homepage": "https://dibiphp.com",
  364. "keywords": [
  365. "access",
  366. "database",
  367. "dbal",
  368. "mssql",
  369. "mysql",
  370. "odbc",
  371. "oracle",
  372. "pdo",
  373. "postgresql",
  374. "sqlite",
  375. "sqlsrv"
  376. ],
  377. "support": {
  378. "issues": "https://github.com/dg/dibi/issues",
  379. "source": "https://github.com/dg/dibi/tree/v4.2.6"
  380. },
  381. "time": "2022-01-19T17:38:15+00:00"
  382. },
  383. {
  384. "name": "doctrine/annotations",
  385. "version": "1.10.3",
  386. "source": {
  387. "type": "git",
  388. "url": "https://github.com/doctrine/annotations.git",
  389. "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d"
  390. },
  391. "dist": {
  392. "type": "zip",
  393. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5db60a4969eba0e0c197a19c077780aadbc43c5d",
  394. "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d",
  395. "shasum": ""
  396. },
  397. "require": {
  398. "doctrine/lexer": "1.*",
  399. "ext-tokenizer": "*",
  400. "php": "^7.1 || ^8.0"
  401. },
  402. "require-dev": {
  403. "doctrine/cache": "1.*",
  404. "phpunit/phpunit": "^7.5"
  405. },
  406. "type": "library",
  407. "extra": {
  408. "branch-alias": {
  409. "dev-master": "1.9.x-dev"
  410. }
  411. },
  412. "autoload": {
  413. "psr-4": {
  414. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  415. }
  416. },
  417. "notification-url": "https://packagist.org/downloads/",
  418. "license": [
  419. "MIT"
  420. ],
  421. "authors": [
  422. {
  423. "name": "Guilherme Blanco",
  424. "email": "guilhermeblanco@gmail.com"
  425. },
  426. {
  427. "name": "Roman Borschel",
  428. "email": "roman@code-factory.org"
  429. },
  430. {
  431. "name": "Benjamin Eberlei",
  432. "email": "kontakt@beberlei.de"
  433. },
  434. {
  435. "name": "Jonathan Wage",
  436. "email": "jonwage@gmail.com"
  437. },
  438. {
  439. "name": "Johannes Schmitt",
  440. "email": "schmittjoh@gmail.com"
  441. }
  442. ],
  443. "description": "Docblock Annotations Parser",
  444. "homepage": "http://www.doctrine-project.org",
  445. "keywords": [
  446. "annotations",
  447. "docblock",
  448. "parser"
  449. ],
  450. "time": "2020-05-25T17:24:27+00:00"
  451. },
  452. {
  453. "name": "doctrine/collections",
  454. "version": "1.6.8",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/doctrine/collections.git",
  458. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/doctrine/collections/zipball/1958a744696c6bb3bb0d28db2611dc11610e78af",
  463. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af",
  464. "shasum": ""
  465. },
  466. "require": {
  467. "php": "^7.1.3 || ^8.0"
  468. },
  469. "require-dev": {
  470. "doctrine/coding-standard": "^9.0",
  471. "phpstan/phpstan": "^0.12",
  472. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  473. "vimeo/psalm": "^4.2.1"
  474. },
  475. "type": "library",
  476. "autoload": {
  477. "psr-4": {
  478. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  479. }
  480. },
  481. "notification-url": "https://packagist.org/downloads/",
  482. "license": [
  483. "MIT"
  484. ],
  485. "authors": [
  486. {
  487. "name": "Guilherme Blanco",
  488. "email": "guilhermeblanco@gmail.com"
  489. },
  490. {
  491. "name": "Roman Borschel",
  492. "email": "roman@code-factory.org"
  493. },
  494. {
  495. "name": "Benjamin Eberlei",
  496. "email": "kontakt@beberlei.de"
  497. },
  498. {
  499. "name": "Jonathan Wage",
  500. "email": "jonwage@gmail.com"
  501. },
  502. {
  503. "name": "Johannes Schmitt",
  504. "email": "schmittjoh@gmail.com"
  505. }
  506. ],
  507. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  508. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  509. "keywords": [
  510. "array",
  511. "collections",
  512. "iterators",
  513. "php"
  514. ],
  515. "support": {
  516. "issues": "https://github.com/doctrine/collections/issues",
  517. "source": "https://github.com/doctrine/collections/tree/1.6.8"
  518. },
  519. "time": "2021-08-10T18:51:53+00:00"
  520. },
  521. {
  522. "name": "doctrine/lexer",
  523. "version": "1.2.1",
  524. "source": {
  525. "type": "git",
  526. "url": "https://github.com/doctrine/lexer.git",
  527. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  528. },
  529. "dist": {
  530. "type": "zip",
  531. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  532. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  533. "shasum": ""
  534. },
  535. "require": {
  536. "php": "^7.2 || ^8.0"
  537. },
  538. "require-dev": {
  539. "doctrine/coding-standard": "^6.0",
  540. "phpstan/phpstan": "^0.11.8",
  541. "phpunit/phpunit": "^8.2"
  542. },
  543. "type": "library",
  544. "extra": {
  545. "branch-alias": {
  546. "dev-master": "1.2.x-dev"
  547. }
  548. },
  549. "autoload": {
  550. "psr-4": {
  551. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  552. }
  553. },
  554. "notification-url": "https://packagist.org/downloads/",
  555. "license": [
  556. "MIT"
  557. ],
  558. "authors": [
  559. {
  560. "name": "Guilherme Blanco",
  561. "email": "guilhermeblanco@gmail.com"
  562. },
  563. {
  564. "name": "Roman Borschel",
  565. "email": "roman@code-factory.org"
  566. },
  567. {
  568. "name": "Johannes Schmitt",
  569. "email": "schmittjoh@gmail.com"
  570. }
  571. ],
  572. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  573. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  574. "keywords": [
  575. "annotations",
  576. "docblock",
  577. "lexer",
  578. "parser",
  579. "php"
  580. ],
  581. "time": "2020-05-25T17:44:05+00:00"
  582. },
  583. {
  584. "name": "dragonmantank/cron-expression",
  585. "version": "v3.1.0",
  586. "source": {
  587. "type": "git",
  588. "url": "https://github.com/dragonmantank/cron-expression.git",
  589. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  590. },
  591. "dist": {
  592. "type": "zip",
  593. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  594. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  595. "shasum": ""
  596. },
  597. "require": {
  598. "php": "^7.2|^8.0",
  599. "webmozart/assert": "^1.7.0"
  600. },
  601. "replace": {
  602. "mtdowling/cron-expression": "^1.0"
  603. },
  604. "require-dev": {
  605. "phpstan/extension-installer": "^1.0",
  606. "phpstan/phpstan": "^0.12",
  607. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  608. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  609. },
  610. "type": "library",
  611. "autoload": {
  612. "psr-4": {
  613. "Cron\\": "src/Cron/"
  614. }
  615. },
  616. "notification-url": "https://packagist.org/downloads/",
  617. "license": [
  618. "MIT"
  619. ],
  620. "authors": [
  621. {
  622. "name": "Chris Tankersley",
  623. "email": "chris@ctankersley.com",
  624. "homepage": "https://github.com/dragonmantank"
  625. }
  626. ],
  627. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  628. "keywords": [
  629. "cron",
  630. "schedule"
  631. ],
  632. "support": {
  633. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  634. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  635. },
  636. "funding": [
  637. {
  638. "url": "https://github.com/dragonmantank",
  639. "type": "github"
  640. }
  641. ],
  642. "time": "2020-11-24T19:55:57+00:00"
  643. },
  644. {
  645. "name": "fig/http-message-util",
  646. "version": "1.1.4",
  647. "source": {
  648. "type": "git",
  649. "url": "https://github.com/php-fig/http-message-util.git",
  650. "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422"
  651. },
  652. "dist": {
  653. "type": "zip",
  654. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/3242caa9da7221a304b8f84eb9eaddae0a7cf422",
  655. "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422",
  656. "shasum": ""
  657. },
  658. "require": {
  659. "php": "^5.3 || ^7.0"
  660. },
  661. "suggest": {
  662. "psr/http-message": "The package containing the PSR-7 interfaces"
  663. },
  664. "type": "library",
  665. "extra": {
  666. "branch-alias": {
  667. "dev-master": "1.1.x-dev"
  668. }
  669. },
  670. "autoload": {
  671. "psr-4": {
  672. "Fig\\Http\\Message\\": "src/"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "MIT"
  678. ],
  679. "authors": [
  680. {
  681. "name": "PHP-FIG",
  682. "homepage": "http://www.php-fig.org/"
  683. }
  684. ],
  685. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  686. "keywords": [
  687. "http",
  688. "http-message",
  689. "psr",
  690. "psr-7",
  691. "request",
  692. "response"
  693. ],
  694. "time": "2020-02-05T20:36:27+00:00"
  695. },
  696. {
  697. "name": "guzzlehttp/guzzle",
  698. "version": "7.3.0",
  699. "source": {
  700. "type": "git",
  701. "url": "https://github.com/guzzle/guzzle.git",
  702. "reference": "7008573787b430c1c1f650e3722d9bba59967628"
  703. },
  704. "dist": {
  705. "type": "zip",
  706. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628",
  707. "reference": "7008573787b430c1c1f650e3722d9bba59967628",
  708. "shasum": ""
  709. },
  710. "require": {
  711. "ext-json": "*",
  712. "guzzlehttp/promises": "^1.4",
  713. "guzzlehttp/psr7": "^1.7 || ^2.0",
  714. "php": "^7.2.5 || ^8.0",
  715. "psr/http-client": "^1.0"
  716. },
  717. "provide": {
  718. "psr/http-client-implementation": "1.0"
  719. },
  720. "require-dev": {
  721. "bamarni/composer-bin-plugin": "^1.4.1",
  722. "ext-curl": "*",
  723. "php-http/client-integration-tests": "^3.0",
  724. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  725. "psr/log": "^1.1"
  726. },
  727. "suggest": {
  728. "ext-curl": "Required for CURL handler support",
  729. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  730. "psr/log": "Required for using the Log middleware"
  731. },
  732. "type": "library",
  733. "extra": {
  734. "branch-alias": {
  735. "dev-master": "7.3-dev"
  736. }
  737. },
  738. "autoload": {
  739. "psr-4": {
  740. "GuzzleHttp\\": "src/"
  741. },
  742. "files": [
  743. "src/functions_include.php"
  744. ]
  745. },
  746. "notification-url": "https://packagist.org/downloads/",
  747. "license": [
  748. "MIT"
  749. ],
  750. "authors": [
  751. {
  752. "name": "Michael Dowling",
  753. "email": "mtdowling@gmail.com",
  754. "homepage": "https://github.com/mtdowling"
  755. },
  756. {
  757. "name": "Márk Sági-Kazár",
  758. "email": "mark.sagikazar@gmail.com",
  759. "homepage": "https://sagikazarmark.hu"
  760. }
  761. ],
  762. "description": "Guzzle is a PHP HTTP client library",
  763. "homepage": "http://guzzlephp.org/",
  764. "keywords": [
  765. "client",
  766. "curl",
  767. "framework",
  768. "http",
  769. "http client",
  770. "psr-18",
  771. "psr-7",
  772. "rest",
  773. "web service"
  774. ],
  775. "support": {
  776. "issues": "https://github.com/guzzle/guzzle/issues",
  777. "source": "https://github.com/guzzle/guzzle/tree/7.3.0"
  778. },
  779. "funding": [
  780. {
  781. "url": "https://github.com/GrahamCampbell",
  782. "type": "github"
  783. },
  784. {
  785. "url": "https://github.com/Nyholm",
  786. "type": "github"
  787. },
  788. {
  789. "url": "https://github.com/alexeyshockov",
  790. "type": "github"
  791. },
  792. {
  793. "url": "https://github.com/gmponos",
  794. "type": "github"
  795. }
  796. ],
  797. "time": "2021-03-23T11:33:13+00:00"
  798. },
  799. {
  800. "name": "guzzlehttp/promises",
  801. "version": "1.4.1",
  802. "source": {
  803. "type": "git",
  804. "url": "https://github.com/guzzle/promises.git",
  805. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  806. },
  807. "dist": {
  808. "type": "zip",
  809. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  810. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  811. "shasum": ""
  812. },
  813. "require": {
  814. "php": ">=5.5"
  815. },
  816. "require-dev": {
  817. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  818. },
  819. "type": "library",
  820. "extra": {
  821. "branch-alias": {
  822. "dev-master": "1.4-dev"
  823. }
  824. },
  825. "autoload": {
  826. "psr-4": {
  827. "GuzzleHttp\\Promise\\": "src/"
  828. },
  829. "files": [
  830. "src/functions_include.php"
  831. ]
  832. },
  833. "notification-url": "https://packagist.org/downloads/",
  834. "license": [
  835. "MIT"
  836. ],
  837. "authors": [
  838. {
  839. "name": "Michael Dowling",
  840. "email": "mtdowling@gmail.com",
  841. "homepage": "https://github.com/mtdowling"
  842. }
  843. ],
  844. "description": "Guzzle promises library",
  845. "keywords": [
  846. "promise"
  847. ],
  848. "support": {
  849. "issues": "https://github.com/guzzle/promises/issues",
  850. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  851. },
  852. "time": "2021-03-07T09:25:29+00:00"
  853. },
  854. {
  855. "name": "guzzlehttp/psr7",
  856. "version": "1.8.2",
  857. "source": {
  858. "type": "git",
  859. "url": "https://github.com/guzzle/psr7.git",
  860. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  861. },
  862. "dist": {
  863. "type": "zip",
  864. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  865. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  866. "shasum": ""
  867. },
  868. "require": {
  869. "php": ">=5.4.0",
  870. "psr/http-message": "~1.0",
  871. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  872. },
  873. "provide": {
  874. "psr/http-message-implementation": "1.0"
  875. },
  876. "require-dev": {
  877. "ext-zlib": "*",
  878. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  879. },
  880. "suggest": {
  881. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  882. },
  883. "type": "library",
  884. "extra": {
  885. "branch-alias": {
  886. "dev-master": "1.7-dev"
  887. }
  888. },
  889. "autoload": {
  890. "psr-4": {
  891. "GuzzleHttp\\Psr7\\": "src/"
  892. },
  893. "files": [
  894. "src/functions_include.php"
  895. ]
  896. },
  897. "notification-url": "https://packagist.org/downloads/",
  898. "license": [
  899. "MIT"
  900. ],
  901. "authors": [
  902. {
  903. "name": "Michael Dowling",
  904. "email": "mtdowling@gmail.com",
  905. "homepage": "https://github.com/mtdowling"
  906. },
  907. {
  908. "name": "Tobias Schultze",
  909. "homepage": "https://github.com/Tobion"
  910. }
  911. ],
  912. "description": "PSR-7 message implementation that also provides common utility methods",
  913. "keywords": [
  914. "http",
  915. "message",
  916. "psr-7",
  917. "request",
  918. "response",
  919. "stream",
  920. "uri",
  921. "url"
  922. ],
  923. "support": {
  924. "issues": "https://github.com/guzzle/psr7/issues",
  925. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  926. },
  927. "time": "2021-04-26T09:17:50+00:00"
  928. },
  929. {
  930. "name": "illuminate/contracts",
  931. "version": "v5.8.0",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/illuminate/contracts.git",
  935. "reference": "3e3a9a654adbf798e05491a5dbf90112df1effde"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/illuminate/contracts/zipball/3e3a9a654adbf798e05491a5dbf90112df1effde",
  940. "reference": "3e3a9a654adbf798e05491a5dbf90112df1effde",
  941. "shasum": ""
  942. },
  943. "require": {
  944. "php": "^7.1.3",
  945. "psr/container": "^1.0",
  946. "psr/simple-cache": "^1.0"
  947. },
  948. "type": "library",
  949. "extra": {
  950. "branch-alias": {
  951. "dev-master": "5.8-dev"
  952. }
  953. },
  954. "autoload": {
  955. "psr-4": {
  956. "Illuminate\\Contracts\\": ""
  957. }
  958. },
  959. "notification-url": "https://packagist.org/downloads/",
  960. "license": [
  961. "MIT"
  962. ],
  963. "authors": [
  964. {
  965. "name": "Taylor Otwell",
  966. "email": "taylor@laravel.com"
  967. }
  968. ],
  969. "description": "The Illuminate Contracts package.",
  970. "homepage": "https://laravel.com",
  971. "time": "2019-02-18T18:37:54+00:00"
  972. },
  973. {
  974. "name": "kryptonit3/couchpotato",
  975. "version": "1.0.0",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/Kryptonit3/CouchPotato.git",
  979. "reference": "7a1fc892f70f120f74ff005850e923a0f1566376"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/Kryptonit3/CouchPotato/zipball/7a1fc892f70f120f74ff005850e923a0f1566376",
  984. "reference": "7a1fc892f70f120f74ff005850e923a0f1566376",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "guzzlehttp/guzzle": "^7.0"
  989. },
  990. "type": "library",
  991. "autoload": {
  992. "psr-4": {
  993. "Kryptonit3\\CouchPotato\\": "src/"
  994. }
  995. },
  996. "notification-url": "https://packagist.org/downloads/",
  997. "license": [
  998. "MIT"
  999. ],
  1000. "authors": [
  1001. {
  1002. "name": "Jesse Szypulski",
  1003. "email": "jesse.szypulski@gmail.com"
  1004. }
  1005. ],
  1006. "description": "PHP Wrapper for CouchPotato API",
  1007. "time": "2016-02-06T22:02:39+00:00"
  1008. },
  1009. {
  1010. "name": "kryptonit3/sickrage",
  1011. "version": "1.0.1",
  1012. "source": {
  1013. "type": "git",
  1014. "url": "https://github.com/Kryptonit3/SickRage.git",
  1015. "reference": "441a293b5c219c3cdd1ebebd2bcf4518598f84aa"
  1016. },
  1017. "dist": {
  1018. "type": "zip",
  1019. "url": "https://api.github.com/repos/Kryptonit3/SickRage/zipball/441a293b5c219c3cdd1ebebd2bcf4518598f84aa",
  1020. "reference": "441a293b5c219c3cdd1ebebd2bcf4518598f84aa",
  1021. "shasum": ""
  1022. },
  1023. "require": {
  1024. "guzzlehttp/guzzle": "^7.0"
  1025. },
  1026. "type": "library",
  1027. "autoload": {
  1028. "psr-4": {
  1029. "Kryptonit3\\SickRage\\": "src/"
  1030. }
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "MIT"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Jesse Szypulski",
  1039. "email": "jesse.szypulski@gmail.com"
  1040. }
  1041. ],
  1042. "description": "PHP Wrapper for SickRage / SickBeard API",
  1043. "time": "2016-08-08T00:57:46+00:00"
  1044. },
  1045. {
  1046. "name": "kryptonit3/sonarr",
  1047. "version": "1.0.6.1",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/Kryptonit3/Sonarr.git",
  1051. "reference": "e30c5c783a837270bcef81571ca9b95909c52e5e"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/Kryptonit3/Sonarr/zipball/e30c5c783a837270bcef81571ca9b95909c52e5e",
  1056. "reference": "e30c5c783a837270bcef81571ca9b95909c52e5e",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "guzzlehttp/guzzle": "^7.0"
  1061. },
  1062. "type": "library",
  1063. "autoload": {
  1064. "psr-4": {
  1065. "Kryptonit3\\Sonarr\\": "src/"
  1066. }
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "MIT"
  1071. ],
  1072. "authors": [
  1073. {
  1074. "name": "Jesse Szypulski",
  1075. "email": "jesse.szypulski@gmail.com"
  1076. }
  1077. ],
  1078. "description": "PHP Sonarr API Wrapper",
  1079. "time": "2017-06-30T01:25:49+00:00"
  1080. },
  1081. {
  1082. "name": "lcobucci/clock",
  1083. "version": "2.0.0",
  1084. "source": {
  1085. "type": "git",
  1086. "url": "https://github.com/lcobucci/clock.git",
  1087. "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3"
  1088. },
  1089. "dist": {
  1090. "type": "zip",
  1091. "url": "https://api.github.com/repos/lcobucci/clock/zipball/353d83fe2e6ae95745b16b3d911813df6a05bfb3",
  1092. "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3",
  1093. "shasum": ""
  1094. },
  1095. "require": {
  1096. "php": "^7.4 || ^8.0"
  1097. },
  1098. "require-dev": {
  1099. "infection/infection": "^0.17",
  1100. "lcobucci/coding-standard": "^6.0",
  1101. "phpstan/extension-installer": "^1.0",
  1102. "phpstan/phpstan": "^0.12",
  1103. "phpstan/phpstan-deprecation-rules": "^0.12",
  1104. "phpstan/phpstan-phpunit": "^0.12",
  1105. "phpstan/phpstan-strict-rules": "^0.12",
  1106. "phpunit/php-code-coverage": "9.1.4",
  1107. "phpunit/phpunit": "9.3.7"
  1108. },
  1109. "type": "library",
  1110. "autoload": {
  1111. "psr-4": {
  1112. "Lcobucci\\Clock\\": "src"
  1113. }
  1114. },
  1115. "notification-url": "https://packagist.org/downloads/",
  1116. "license": [
  1117. "MIT"
  1118. ],
  1119. "authors": [
  1120. {
  1121. "name": "Luís Cobucci",
  1122. "email": "lcobucci@gmail.com"
  1123. }
  1124. ],
  1125. "description": "Yet another clock abstraction",
  1126. "support": {
  1127. "issues": "https://github.com/lcobucci/clock/issues",
  1128. "source": "https://github.com/lcobucci/clock/tree/2.0.x"
  1129. },
  1130. "funding": [
  1131. {
  1132. "url": "https://github.com/lcobucci",
  1133. "type": "github"
  1134. },
  1135. {
  1136. "url": "https://www.patreon.com/lcobucci",
  1137. "type": "patreon"
  1138. }
  1139. ],
  1140. "time": "2020-08-27T18:56:02+00:00"
  1141. },
  1142. {
  1143. "name": "lcobucci/jwt",
  1144. "version": "4.1.5",
  1145. "source": {
  1146. "type": "git",
  1147. "url": "https://github.com/lcobucci/jwt.git",
  1148. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  1149. },
  1150. "dist": {
  1151. "type": "zip",
  1152. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  1153. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  1154. "shasum": ""
  1155. },
  1156. "require": {
  1157. "ext-hash": "*",
  1158. "ext-json": "*",
  1159. "ext-mbstring": "*",
  1160. "ext-openssl": "*",
  1161. "ext-sodium": "*",
  1162. "lcobucci/clock": "^2.0",
  1163. "php": "^7.4 || ^8.0"
  1164. },
  1165. "require-dev": {
  1166. "infection/infection": "^0.21",
  1167. "lcobucci/coding-standard": "^6.0",
  1168. "mikey179/vfsstream": "^1.6.7",
  1169. "phpbench/phpbench": "^1.0",
  1170. "phpstan/extension-installer": "^1.0",
  1171. "phpstan/phpstan": "^0.12",
  1172. "phpstan/phpstan-deprecation-rules": "^0.12",
  1173. "phpstan/phpstan-phpunit": "^0.12",
  1174. "phpstan/phpstan-strict-rules": "^0.12",
  1175. "phpunit/php-invoker": "^3.1",
  1176. "phpunit/phpunit": "^9.5"
  1177. },
  1178. "type": "library",
  1179. "autoload": {
  1180. "psr-4": {
  1181. "Lcobucci\\JWT\\": "src"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "BSD-3-Clause"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "Luís Cobucci",
  1191. "email": "lcobucci@gmail.com",
  1192. "role": "Developer"
  1193. }
  1194. ],
  1195. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1196. "keywords": [
  1197. "JWS",
  1198. "jwt"
  1199. ],
  1200. "support": {
  1201. "issues": "https://github.com/lcobucci/jwt/issues",
  1202. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  1203. },
  1204. "funding": [
  1205. {
  1206. "url": "https://github.com/lcobucci",
  1207. "type": "github"
  1208. },
  1209. {
  1210. "url": "https://www.patreon.com/lcobucci",
  1211. "type": "patreon"
  1212. }
  1213. ],
  1214. "time": "2021-09-28T19:34:56+00:00"
  1215. },
  1216. {
  1217. "name": "league/oauth2-client",
  1218. "version": "2.6.0",
  1219. "source": {
  1220. "type": "git",
  1221. "url": "https://github.com/thephpleague/oauth2-client.git",
  1222. "reference": "badb01e62383430706433191b82506b6df24ad98"
  1223. },
  1224. "dist": {
  1225. "type": "zip",
  1226. "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/badb01e62383430706433191b82506b6df24ad98",
  1227. "reference": "badb01e62383430706433191b82506b6df24ad98",
  1228. "shasum": ""
  1229. },
  1230. "require": {
  1231. "guzzlehttp/guzzle": "^7.0",
  1232. "paragonie/random_compat": "^1 || ^2 || ^9.99",
  1233. "php": "^5.6 || ^7.0 || ^8.0"
  1234. },
  1235. "require-dev": {
  1236. "mockery/mockery": "^1.3",
  1237. "php-parallel-lint/php-parallel-lint": "^1.2",
  1238. "phpunit/phpunit": "^5.7 || ^6.0 || ^9.3",
  1239. "squizlabs/php_codesniffer": "^2.3 || ^3.0"
  1240. },
  1241. "type": "library",
  1242. "extra": {
  1243. "branch-alias": {
  1244. "dev-2.x": "2.0.x-dev"
  1245. }
  1246. },
  1247. "autoload": {
  1248. "psr-4": {
  1249. "League\\OAuth2\\Client\\": "src/"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Alex Bilbie",
  1259. "email": "hello@alexbilbie.com",
  1260. "homepage": "http://www.alexbilbie.com",
  1261. "role": "Developer"
  1262. },
  1263. {
  1264. "name": "Woody Gilk",
  1265. "homepage": "https://github.com/shadowhand",
  1266. "role": "Contributor"
  1267. }
  1268. ],
  1269. "description": "OAuth 2.0 Client Library",
  1270. "keywords": [
  1271. "Authentication",
  1272. "SSO",
  1273. "authorization",
  1274. "identity",
  1275. "idp",
  1276. "oauth",
  1277. "oauth2",
  1278. "single sign on"
  1279. ],
  1280. "support": {
  1281. "issues": "https://github.com/thephpleague/oauth2-client/issues",
  1282. "source": "https://github.com/thephpleague/oauth2-client/tree/2.6.0"
  1283. },
  1284. "time": "2020-10-28T02:03:40+00:00"
  1285. },
  1286. {
  1287. "name": "monolog/monolog",
  1288. "version": "1.26.1",
  1289. "source": {
  1290. "type": "git",
  1291. "url": "https://github.com/Seldaek/monolog.git",
  1292. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5"
  1293. },
  1294. "dist": {
  1295. "type": "zip",
  1296. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  1297. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  1298. "shasum": ""
  1299. },
  1300. "require": {
  1301. "php": ">=5.3.0",
  1302. "psr/log": "~1.0"
  1303. },
  1304. "provide": {
  1305. "psr/log-implementation": "1.0.0"
  1306. },
  1307. "require-dev": {
  1308. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1309. "doctrine/couchdb": "~1.0@dev",
  1310. "graylog2/gelf-php": "~1.0",
  1311. "php-amqplib/php-amqplib": "~2.4",
  1312. "php-console/php-console": "^3.1.3",
  1313. "phpstan/phpstan": "^0.12.59",
  1314. "phpunit/phpunit": "~4.5",
  1315. "ruflin/elastica": ">=0.90 <3.0",
  1316. "sentry/sentry": "^0.13",
  1317. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1318. },
  1319. "suggest": {
  1320. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1321. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1322. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1323. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1324. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1325. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1326. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1327. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1328. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1329. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1330. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1331. },
  1332. "type": "library",
  1333. "autoload": {
  1334. "psr-4": {
  1335. "Monolog\\": "src/Monolog"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "authors": [
  1343. {
  1344. "name": "Jordi Boggiano",
  1345. "email": "j.boggiano@seld.be",
  1346. "homepage": "http://seld.be"
  1347. }
  1348. ],
  1349. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1350. "homepage": "http://github.com/Seldaek/monolog",
  1351. "keywords": [
  1352. "log",
  1353. "logging",
  1354. "psr-3"
  1355. ],
  1356. "support": {
  1357. "issues": "https://github.com/Seldaek/monolog/issues",
  1358. "source": "https://github.com/Seldaek/monolog/tree/1.26.1"
  1359. },
  1360. "funding": [
  1361. {
  1362. "url": "https://github.com/Seldaek",
  1363. "type": "github"
  1364. },
  1365. {
  1366. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1367. "type": "tidelift"
  1368. }
  1369. ],
  1370. "time": "2021-05-28T08:32:12+00:00"
  1371. },
  1372. {
  1373. "name": "myclabs/php-enum",
  1374. "version": "1.8.0",
  1375. "source": {
  1376. "type": "git",
  1377. "url": "https://github.com/myclabs/php-enum.git",
  1378. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  1379. },
  1380. "dist": {
  1381. "type": "zip",
  1382. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  1383. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  1384. "shasum": ""
  1385. },
  1386. "require": {
  1387. "ext-json": "*",
  1388. "php": "^7.3 || ^8.0"
  1389. },
  1390. "require-dev": {
  1391. "phpunit/phpunit": "^9.5",
  1392. "squizlabs/php_codesniffer": "1.*",
  1393. "vimeo/psalm": "^4.5.1"
  1394. },
  1395. "type": "library",
  1396. "autoload": {
  1397. "psr-4": {
  1398. "MyCLabs\\Enum\\": "src/"
  1399. }
  1400. },
  1401. "notification-url": "https://packagist.org/downloads/",
  1402. "license": [
  1403. "MIT"
  1404. ],
  1405. "authors": [
  1406. {
  1407. "name": "PHP Enum contributors",
  1408. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1409. }
  1410. ],
  1411. "description": "PHP Enum implementation",
  1412. "homepage": "http://github.com/myclabs/php-enum",
  1413. "keywords": [
  1414. "enum"
  1415. ],
  1416. "support": {
  1417. "issues": "https://github.com/myclabs/php-enum/issues",
  1418. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  1419. },
  1420. "funding": [
  1421. {
  1422. "url": "https://github.com/mnapoli",
  1423. "type": "github"
  1424. },
  1425. {
  1426. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  1427. "type": "tidelift"
  1428. }
  1429. ],
  1430. "time": "2021-02-15T16:11:48+00:00"
  1431. },
  1432. {
  1433. "name": "nekonomokochan/php-json-logger",
  1434. "version": "v1.3.1",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/nekonomokochan/php-json-logger.git",
  1438. "reference": "6df126a82940a00d8ea2da6e0b7c58e3e57eb132"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/nekonomokochan/php-json-logger/zipball/6df126a82940a00d8ea2da6e0b7c58e3e57eb132",
  1443. "reference": "6df126a82940a00d8ea2da6e0b7c58e3e57eb132",
  1444. "shasum": ""
  1445. },
  1446. "require": {
  1447. "monolog/monolog": "^1.24",
  1448. "php": "~7.1",
  1449. "ramsey/uuid": "^4.2"
  1450. },
  1451. "require-dev": {
  1452. "friendsofphp/php-cs-fixer": "^2.14",
  1453. "php": "~7.1",
  1454. "php-coveralls/php-coveralls": "^2.1",
  1455. "phpunit/phpcov": "^5.0",
  1456. "phpunit/phpunit": "^7.5"
  1457. },
  1458. "type": "library",
  1459. "autoload": {
  1460. "psr-4": {
  1461. "Nekonomokochan\\PhpJsonLogger\\": "src/PhpJsonLogger"
  1462. }
  1463. },
  1464. "notification-url": "https://packagist.org/downloads/",
  1465. "license": [
  1466. "MIT"
  1467. ],
  1468. "authors": [
  1469. {
  1470. "name": "keitakn",
  1471. "email": "keita.koga.work@gmail.com"
  1472. }
  1473. ],
  1474. "description": "LoggingLibrary for PHP. Output by JSON Format",
  1475. "support": {
  1476. "issues": "https://github.com/nekonomokochan/php-json-logger/issues",
  1477. "source": "https://github.com/nekonomokochan/php-json-logger/tree/feature/issue63"
  1478. },
  1479. "time": "2019-02-18T06:07:14+00:00"
  1480. },
  1481. {
  1482. "name": "nikic/fast-route",
  1483. "version": "v1.3.0",
  1484. "source": {
  1485. "type": "git",
  1486. "url": "https://github.com/nikic/FastRoute.git",
  1487. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  1488. },
  1489. "dist": {
  1490. "type": "zip",
  1491. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  1492. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  1493. "shasum": ""
  1494. },
  1495. "require": {
  1496. "php": ">=5.4.0"
  1497. },
  1498. "require-dev": {
  1499. "phpunit/phpunit": "^4.8.35|~5.7"
  1500. },
  1501. "type": "library",
  1502. "autoload": {
  1503. "psr-4": {
  1504. "FastRoute\\": "src/"
  1505. },
  1506. "files": [
  1507. "src/functions.php"
  1508. ]
  1509. },
  1510. "notification-url": "https://packagist.org/downloads/",
  1511. "license": [
  1512. "BSD-3-Clause"
  1513. ],
  1514. "authors": [
  1515. {
  1516. "name": "Nikita Popov",
  1517. "email": "nikic@php.net"
  1518. }
  1519. ],
  1520. "description": "Fast request router for PHP",
  1521. "keywords": [
  1522. "router",
  1523. "routing"
  1524. ],
  1525. "support": {
  1526. "issues": "https://github.com/nikic/FastRoute/issues",
  1527. "source": "https://github.com/nikic/FastRoute/tree/master"
  1528. },
  1529. "time": "2018-02-13T20:26:39+00:00"
  1530. },
  1531. {
  1532. "name": "paquettg/php-html-parser",
  1533. "version": "3.1.1",
  1534. "source": {
  1535. "type": "git",
  1536. "url": "https://github.com/paquettg/php-html-parser.git",
  1537. "reference": "4e01a438ad5961cc2d7427eb9798d213c8a12629"
  1538. },
  1539. "dist": {
  1540. "type": "zip",
  1541. "url": "https://api.github.com/repos/paquettg/php-html-parser/zipball/4e01a438ad5961cc2d7427eb9798d213c8a12629",
  1542. "reference": "4e01a438ad5961cc2d7427eb9798d213c8a12629",
  1543. "shasum": ""
  1544. },
  1545. "require": {
  1546. "ext-curl": "*",
  1547. "ext-mbstring": "*",
  1548. "ext-zlib": "*",
  1549. "guzzlehttp/guzzle": "^7.0",
  1550. "guzzlehttp/psr7": "^1.6",
  1551. "myclabs/php-enum": "^1.7",
  1552. "paquettg/string-encode": "~1.0.0",
  1553. "php": ">=7.2",
  1554. "php-http/httplug": "^2.1"
  1555. },
  1556. "require-dev": {
  1557. "friendsofphp/php-cs-fixer": "^2.16",
  1558. "infection/infection": "^0.13.4",
  1559. "mockery/mockery": "^1.2",
  1560. "phan/phan": "^2.4",
  1561. "phpunit/phpunit": "^7.5.1"
  1562. },
  1563. "type": "library",
  1564. "autoload": {
  1565. "psr-4": {
  1566. "PHPHtmlParser\\": "src/PHPHtmlParser"
  1567. }
  1568. },
  1569. "notification-url": "https://packagist.org/downloads/",
  1570. "license": [
  1571. "MIT"
  1572. ],
  1573. "authors": [
  1574. {
  1575. "name": "Gilles Paquette",
  1576. "email": "paquettg@gmail.com",
  1577. "homepage": "http://gillespaquette.ca"
  1578. }
  1579. ],
  1580. "description": "An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.",
  1581. "homepage": "https://github.com/paquettg/php-html-parser",
  1582. "keywords": [
  1583. "dom",
  1584. "html",
  1585. "parser"
  1586. ],
  1587. "support": {
  1588. "issues": "https://github.com/paquettg/php-html-parser/issues",
  1589. "source": "https://github.com/paquettg/php-html-parser/tree/3.1.1"
  1590. },
  1591. "funding": [
  1592. {
  1593. "url": "https://tidelift.com/funding/github/packagist/paquettg/php-html-parser",
  1594. "type": "tidelift"
  1595. }
  1596. ],
  1597. "time": "2020-11-01T20:34:43+00:00"
  1598. },
  1599. {
  1600. "name": "paquettg/string-encode",
  1601. "version": "1.0.1",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/paquettg/string-encoder.git",
  1605. "reference": "a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/paquettg/string-encoder/zipball/a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee",
  1610. "reference": "a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee",
  1611. "shasum": ""
  1612. },
  1613. "require": {
  1614. "php": ">=7.1"
  1615. },
  1616. "require-dev": {
  1617. "phpunit/phpunit": "^7.5.1"
  1618. },
  1619. "type": "library",
  1620. "autoload": {
  1621. "psr-0": {
  1622. "stringEncode": "src/"
  1623. }
  1624. },
  1625. "notification-url": "https://packagist.org/downloads/",
  1626. "license": [
  1627. "MIT"
  1628. ],
  1629. "authors": [
  1630. {
  1631. "name": "Gilles Paquette",
  1632. "email": "paquettg@gmail.com",
  1633. "homepage": "http://gillespaquette.ca"
  1634. }
  1635. ],
  1636. "description": "Facilitating the process of altering string encoding in PHP.",
  1637. "homepage": "https://github.com/paquettg/string-encoder",
  1638. "keywords": [
  1639. "charset",
  1640. "encoding",
  1641. "string"
  1642. ],
  1643. "support": {
  1644. "issues": "https://github.com/paquettg/string-encoder/issues",
  1645. "source": "https://github.com/paquettg/string-encoder/tree/1.0.1"
  1646. },
  1647. "time": "2018-12-21T02:25:09+00:00"
  1648. },
  1649. {
  1650. "name": "paragonie/constant_time_encoding",
  1651. "version": "v2.2.2",
  1652. "source": {
  1653. "type": "git",
  1654. "url": "https://github.com/paragonie/constant_time_encoding.git",
  1655. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33"
  1656. },
  1657. "dist": {
  1658. "type": "zip",
  1659. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  1660. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  1661. "shasum": ""
  1662. },
  1663. "require": {
  1664. "php": "^7"
  1665. },
  1666. "require-dev": {
  1667. "phpunit/phpunit": "^6|^7",
  1668. "vimeo/psalm": "^1"
  1669. },
  1670. "type": "library",
  1671. "autoload": {
  1672. "psr-4": {
  1673. "ParagonIE\\ConstantTime\\": "src/"
  1674. }
  1675. },
  1676. "notification-url": "https://packagist.org/downloads/",
  1677. "license": [
  1678. "MIT"
  1679. ],
  1680. "authors": [
  1681. {
  1682. "name": "Paragon Initiative Enterprises",
  1683. "email": "security@paragonie.com",
  1684. "homepage": "https://paragonie.com",
  1685. "role": "Maintainer"
  1686. },
  1687. {
  1688. "name": "Steve 'Sc00bz' Thomas",
  1689. "email": "steve@tobtu.com",
  1690. "homepage": "https://www.tobtu.com",
  1691. "role": "Original Developer"
  1692. }
  1693. ],
  1694. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  1695. "keywords": [
  1696. "base16",
  1697. "base32",
  1698. "base32_decode",
  1699. "base32_encode",
  1700. "base64",
  1701. "base64_decode",
  1702. "base64_encode",
  1703. "bin2hex",
  1704. "encoding",
  1705. "hex",
  1706. "hex2bin",
  1707. "rfc4648"
  1708. ],
  1709. "time": "2018-03-10T19:47:49+00:00"
  1710. },
  1711. {
  1712. "name": "paragonie/random_compat",
  1713. "version": "v9.99.100",
  1714. "source": {
  1715. "type": "git",
  1716. "url": "https://github.com/paragonie/random_compat.git",
  1717. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  1718. },
  1719. "dist": {
  1720. "type": "zip",
  1721. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1722. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1723. "shasum": ""
  1724. },
  1725. "require": {
  1726. "php": ">= 7"
  1727. },
  1728. "require-dev": {
  1729. "phpunit/phpunit": "4.*|5.*",
  1730. "vimeo/psalm": "^1"
  1731. },
  1732. "suggest": {
  1733. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1734. },
  1735. "type": "library",
  1736. "notification-url": "https://packagist.org/downloads/",
  1737. "license": [
  1738. "MIT"
  1739. ],
  1740. "authors": [
  1741. {
  1742. "name": "Paragon Initiative Enterprises",
  1743. "email": "security@paragonie.com",
  1744. "homepage": "https://paragonie.com"
  1745. }
  1746. ],
  1747. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1748. "keywords": [
  1749. "csprng",
  1750. "polyfill",
  1751. "pseudorandom",
  1752. "random"
  1753. ],
  1754. "support": {
  1755. "email": "info@paragonie.com",
  1756. "issues": "https://github.com/paragonie/random_compat/issues",
  1757. "source": "https://github.com/paragonie/random_compat"
  1758. },
  1759. "time": "2020-10-15T08:29:30+00:00"
  1760. },
  1761. {
  1762. "name": "paragonie/sodium_compat",
  1763. "version": "v1.6.4",
  1764. "source": {
  1765. "type": "git",
  1766. "url": "https://github.com/paragonie/sodium_compat.git",
  1767. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c"
  1768. },
  1769. "dist": {
  1770. "type": "zip",
  1771. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/3f2fd07977541b4d630ea0365ad0eceddee5179c",
  1772. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c",
  1773. "shasum": ""
  1774. },
  1775. "require": {
  1776. "paragonie/random_compat": ">=1",
  1777. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7"
  1778. },
  1779. "require-dev": {
  1780. "phpunit/phpunit": "^3|^4|^5"
  1781. },
  1782. "suggest": {
  1783. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  1784. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  1785. },
  1786. "type": "library",
  1787. "autoload": {
  1788. "files": [
  1789. "autoload.php"
  1790. ]
  1791. },
  1792. "notification-url": "https://packagist.org/downloads/",
  1793. "license": [
  1794. "ISC"
  1795. ],
  1796. "authors": [
  1797. {
  1798. "name": "Paragon Initiative Enterprises",
  1799. "email": "security@paragonie.com"
  1800. },
  1801. {
  1802. "name": "Frank Denis",
  1803. "email": "jedisct1@pureftpd.org"
  1804. }
  1805. ],
  1806. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  1807. "keywords": [
  1808. "Authentication",
  1809. "BLAKE2b",
  1810. "ChaCha20",
  1811. "ChaCha20-Poly1305",
  1812. "Chapoly",
  1813. "Curve25519",
  1814. "Ed25519",
  1815. "EdDSA",
  1816. "Edwards-curve Digital Signature Algorithm",
  1817. "Elliptic Curve Diffie-Hellman",
  1818. "Poly1305",
  1819. "Pure-PHP cryptography",
  1820. "RFC 7748",
  1821. "RFC 8032",
  1822. "Salpoly",
  1823. "Salsa20",
  1824. "X25519",
  1825. "XChaCha20-Poly1305",
  1826. "XSalsa20-Poly1305",
  1827. "Xchacha20",
  1828. "Xsalsa20",
  1829. "aead",
  1830. "cryptography",
  1831. "ecdh",
  1832. "elliptic curve",
  1833. "elliptic curve cryptography",
  1834. "encryption",
  1835. "libsodium",
  1836. "php",
  1837. "public-key cryptography",
  1838. "secret-key cryptography",
  1839. "side-channel resistant"
  1840. ],
  1841. "time": "2018-08-29T22:02:48+00:00"
  1842. },
  1843. {
  1844. "name": "peppeocchi/php-cron-scheduler",
  1845. "version": "v4.0",
  1846. "source": {
  1847. "type": "git",
  1848. "url": "https://github.com/peppeocchi/php-cron-scheduler.git",
  1849. "reference": "0acfa032e60f0ea22a27b96a6b15a673a31d3448"
  1850. },
  1851. "dist": {
  1852. "type": "zip",
  1853. "url": "https://api.github.com/repos/peppeocchi/php-cron-scheduler/zipball/0acfa032e60f0ea22a27b96a6b15a673a31d3448",
  1854. "reference": "0acfa032e60f0ea22a27b96a6b15a673a31d3448",
  1855. "shasum": ""
  1856. },
  1857. "require": {
  1858. "dragonmantank/cron-expression": "^3.0",
  1859. "php": "^7.3 || ^8.0"
  1860. },
  1861. "require-dev": {
  1862. "php-coveralls/php-coveralls": "^2.4",
  1863. "phpunit/phpunit": "~9.5",
  1864. "swiftmailer/swiftmailer": "~5.4 || ^6.0"
  1865. },
  1866. "suggest": {
  1867. "swiftmailer/swiftmailer": "Required to send the output of a job to email address/es (~5.4 || ^6.0)."
  1868. },
  1869. "type": "library",
  1870. "autoload": {
  1871. "psr-4": {
  1872. "GO\\": "src/GO/"
  1873. }
  1874. },
  1875. "notification-url": "https://packagist.org/downloads/",
  1876. "license": [
  1877. "MIT"
  1878. ],
  1879. "authors": [
  1880. {
  1881. "name": "Giuseppe Occhipinti",
  1882. "email": "peppeocchi@gmail.com"
  1883. },
  1884. {
  1885. "name": "Carsten Windler",
  1886. "email": "carsten@carstenwindler.de",
  1887. "homepage": "http://carstenwindler.de",
  1888. "role": "Contributor"
  1889. }
  1890. ],
  1891. "description": "PHP Cron Job Scheduler",
  1892. "keywords": [
  1893. "cron job",
  1894. "scheduler"
  1895. ],
  1896. "support": {
  1897. "issues": "https://github.com/peppeocchi/php-cron-scheduler/issues",
  1898. "source": "https://github.com/peppeocchi/php-cron-scheduler/tree/v4.0"
  1899. },
  1900. "time": "2021-04-22T21:32:03+00:00"
  1901. },
  1902. {
  1903. "name": "php-http/httplug",
  1904. "version": "2.2.0",
  1905. "source": {
  1906. "type": "git",
  1907. "url": "https://github.com/php-http/httplug.git",
  1908. "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9"
  1909. },
  1910. "dist": {
  1911. "type": "zip",
  1912. "url": "https://api.github.com/repos/php-http/httplug/zipball/191a0a1b41ed026b717421931f8d3bd2514ffbf9",
  1913. "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9",
  1914. "shasum": ""
  1915. },
  1916. "require": {
  1917. "php": "^7.1 || ^8.0",
  1918. "php-http/promise": "^1.1",
  1919. "psr/http-client": "^1.0",
  1920. "psr/http-message": "^1.0"
  1921. },
  1922. "require-dev": {
  1923. "friends-of-phpspec/phpspec-code-coverage": "^4.1",
  1924. "phpspec/phpspec": "^5.1 || ^6.0"
  1925. },
  1926. "type": "library",
  1927. "extra": {
  1928. "branch-alias": {
  1929. "dev-master": "2.x-dev"
  1930. }
  1931. },
  1932. "autoload": {
  1933. "psr-4": {
  1934. "Http\\Client\\": "src/"
  1935. }
  1936. },
  1937. "notification-url": "https://packagist.org/downloads/",
  1938. "license": [
  1939. "MIT"
  1940. ],
  1941. "authors": [
  1942. {
  1943. "name": "Eric GELOEN",
  1944. "email": "geloen.eric@gmail.com"
  1945. },
  1946. {
  1947. "name": "Márk Sági-Kazár",
  1948. "email": "mark.sagikazar@gmail.com",
  1949. "homepage": "https://sagikazarmark.hu"
  1950. }
  1951. ],
  1952. "description": "HTTPlug, the HTTP client abstraction for PHP",
  1953. "homepage": "http://httplug.io",
  1954. "keywords": [
  1955. "client",
  1956. "http"
  1957. ],
  1958. "support": {
  1959. "issues": "https://github.com/php-http/httplug/issues",
  1960. "source": "https://github.com/php-http/httplug/tree/master"
  1961. },
  1962. "time": "2020-07-13T15:43:23+00:00"
  1963. },
  1964. {
  1965. "name": "php-http/promise",
  1966. "version": "1.1.0",
  1967. "source": {
  1968. "type": "git",
  1969. "url": "https://github.com/php-http/promise.git",
  1970. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  1971. },
  1972. "dist": {
  1973. "type": "zip",
  1974. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  1975. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  1976. "shasum": ""
  1977. },
  1978. "require": {
  1979. "php": "^7.1 || ^8.0"
  1980. },
  1981. "require-dev": {
  1982. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  1983. "phpspec/phpspec": "^5.1.2 || ^6.2"
  1984. },
  1985. "type": "library",
  1986. "extra": {
  1987. "branch-alias": {
  1988. "dev-master": "1.1-dev"
  1989. }
  1990. },
  1991. "autoload": {
  1992. "psr-4": {
  1993. "Http\\Promise\\": "src/"
  1994. }
  1995. },
  1996. "notification-url": "https://packagist.org/downloads/",
  1997. "license": [
  1998. "MIT"
  1999. ],
  2000. "authors": [
  2001. {
  2002. "name": "Joel Wurtz",
  2003. "email": "joel.wurtz@gmail.com"
  2004. },
  2005. {
  2006. "name": "Márk Sági-Kazár",
  2007. "email": "mark.sagikazar@gmail.com"
  2008. }
  2009. ],
  2010. "description": "Promise used for asynchronous HTTP requests",
  2011. "homepage": "http://httplug.io",
  2012. "keywords": [
  2013. "promise"
  2014. ],
  2015. "support": {
  2016. "issues": "https://github.com/php-http/promise/issues",
  2017. "source": "https://github.com/php-http/promise/tree/1.1.0"
  2018. },
  2019. "time": "2020-07-07T09:29:14+00:00"
  2020. },
  2021. {
  2022. "name": "phpmailer/phpmailer",
  2023. "version": "v6.5.0",
  2024. "source": {
  2025. "type": "git",
  2026. "url": "https://github.com/PHPMailer/PHPMailer.git",
  2027. "reference": "a5b5c43e50b7fba655f793ad27303cd74c57363c"
  2028. },
  2029. "dist": {
  2030. "type": "zip",
  2031. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/a5b5c43e50b7fba655f793ad27303cd74c57363c",
  2032. "reference": "a5b5c43e50b7fba655f793ad27303cd74c57363c",
  2033. "shasum": ""
  2034. },
  2035. "require": {
  2036. "ext-ctype": "*",
  2037. "ext-filter": "*",
  2038. "ext-hash": "*",
  2039. "php": ">=5.5.0"
  2040. },
  2041. "require-dev": {
  2042. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2043. "doctrine/annotations": "^1.2",
  2044. "phpcompatibility/php-compatibility": "^9.3.5",
  2045. "roave/security-advisories": "dev-latest",
  2046. "squizlabs/php_codesniffer": "^3.5.6",
  2047. "yoast/phpunit-polyfills": "^0.2.0"
  2048. },
  2049. "suggest": {
  2050. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  2051. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  2052. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  2053. "psr/log": "For optional PSR-3 debug logging",
  2054. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  2055. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  2056. },
  2057. "type": "library",
  2058. "autoload": {
  2059. "psr-4": {
  2060. "PHPMailer\\PHPMailer\\": "src/"
  2061. }
  2062. },
  2063. "notification-url": "https://packagist.org/downloads/",
  2064. "license": [
  2065. "LGPL-2.1-only"
  2066. ],
  2067. "authors": [
  2068. {
  2069. "name": "Marcus Bointon",
  2070. "email": "phpmailer@synchromedia.co.uk"
  2071. },
  2072. {
  2073. "name": "Jim Jagielski",
  2074. "email": "jimjag@gmail.com"
  2075. },
  2076. {
  2077. "name": "Andy Prevost",
  2078. "email": "codeworxtech@users.sourceforge.net"
  2079. },
  2080. {
  2081. "name": "Brent R. Matzelle"
  2082. }
  2083. ],
  2084. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  2085. "support": {
  2086. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  2087. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.0"
  2088. },
  2089. "funding": [
  2090. {
  2091. "url": "https://github.com/Synchro",
  2092. "type": "github"
  2093. }
  2094. ],
  2095. "time": "2021-06-16T14:33:43+00:00"
  2096. },
  2097. {
  2098. "name": "pragmarx/google2fa",
  2099. "version": "v3.0.3",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/antonioribeiro/google2fa.git",
  2103. "reference": "6949226739e4424f40031e6f1c96b1fd64047335"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6949226739e4424f40031e6f1c96b1fd64047335",
  2108. "reference": "6949226739e4424f40031e6f1c96b1fd64047335",
  2109. "shasum": ""
  2110. },
  2111. "require": {
  2112. "paragonie/constant_time_encoding": "~1.0|~2.0",
  2113. "paragonie/random_compat": ">=1",
  2114. "php": ">=5.4",
  2115. "symfony/polyfill-php56": "~1.2"
  2116. },
  2117. "require-dev": {
  2118. "bacon/bacon-qr-code": "~1.0",
  2119. "phpunit/phpunit": "~4|~5|~6"
  2120. },
  2121. "suggest": {
  2122. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  2123. },
  2124. "type": "library",
  2125. "extra": {
  2126. "component": "package",
  2127. "branch-alias": {
  2128. "dev-master": "2.0-dev"
  2129. }
  2130. },
  2131. "autoload": {
  2132. "psr-4": {
  2133. "PragmaRX\\Google2FA\\": "src/",
  2134. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  2135. }
  2136. },
  2137. "notification-url": "https://packagist.org/downloads/",
  2138. "license": [
  2139. "MIT"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "Antonio Carlos Ribeiro",
  2144. "email": "acr@antoniocarlosribeiro.com",
  2145. "role": "Creator & Designer"
  2146. }
  2147. ],
  2148. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  2149. "keywords": [
  2150. "2fa",
  2151. "Authentication",
  2152. "Two Factor Authentication",
  2153. "google2fa",
  2154. "laravel"
  2155. ],
  2156. "time": "2018-08-29T13:28:06+00:00"
  2157. },
  2158. {
  2159. "name": "psr/container",
  2160. "version": "1.1.1",
  2161. "source": {
  2162. "type": "git",
  2163. "url": "https://github.com/php-fig/container.git",
  2164. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  2165. },
  2166. "dist": {
  2167. "type": "zip",
  2168. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  2169. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  2170. "shasum": ""
  2171. },
  2172. "require": {
  2173. "php": ">=7.2.0"
  2174. },
  2175. "type": "library",
  2176. "autoload": {
  2177. "psr-4": {
  2178. "Psr\\Container\\": "src/"
  2179. }
  2180. },
  2181. "notification-url": "https://packagist.org/downloads/",
  2182. "license": [
  2183. "MIT"
  2184. ],
  2185. "authors": [
  2186. {
  2187. "name": "PHP-FIG",
  2188. "homepage": "https://www.php-fig.org/"
  2189. }
  2190. ],
  2191. "description": "Common Container Interface (PHP FIG PSR-11)",
  2192. "homepage": "https://github.com/php-fig/container",
  2193. "keywords": [
  2194. "PSR-11",
  2195. "container",
  2196. "container-interface",
  2197. "container-interop",
  2198. "psr"
  2199. ],
  2200. "support": {
  2201. "issues": "https://github.com/php-fig/container/issues",
  2202. "source": "https://github.com/php-fig/container/tree/1.1.1"
  2203. },
  2204. "time": "2021-03-05T17:36:06+00:00"
  2205. },
  2206. {
  2207. "name": "psr/http-client",
  2208. "version": "1.0.1",
  2209. "source": {
  2210. "type": "git",
  2211. "url": "https://github.com/php-fig/http-client.git",
  2212. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2213. },
  2214. "dist": {
  2215. "type": "zip",
  2216. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2217. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2218. "shasum": ""
  2219. },
  2220. "require": {
  2221. "php": "^7.0 || ^8.0",
  2222. "psr/http-message": "^1.0"
  2223. },
  2224. "type": "library",
  2225. "extra": {
  2226. "branch-alias": {
  2227. "dev-master": "1.0.x-dev"
  2228. }
  2229. },
  2230. "autoload": {
  2231. "psr-4": {
  2232. "Psr\\Http\\Client\\": "src/"
  2233. }
  2234. },
  2235. "notification-url": "https://packagist.org/downloads/",
  2236. "license": [
  2237. "MIT"
  2238. ],
  2239. "authors": [
  2240. {
  2241. "name": "PHP-FIG",
  2242. "homepage": "http://www.php-fig.org/"
  2243. }
  2244. ],
  2245. "description": "Common interface for HTTP clients",
  2246. "homepage": "https://github.com/php-fig/http-client",
  2247. "keywords": [
  2248. "http",
  2249. "http-client",
  2250. "psr",
  2251. "psr-18"
  2252. ],
  2253. "support": {
  2254. "source": "https://github.com/php-fig/http-client/tree/master"
  2255. },
  2256. "time": "2020-06-29T06:28:15+00:00"
  2257. },
  2258. {
  2259. "name": "psr/http-factory",
  2260. "version": "1.0.1",
  2261. "source": {
  2262. "type": "git",
  2263. "url": "https://github.com/php-fig/http-factory.git",
  2264. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2265. },
  2266. "dist": {
  2267. "type": "zip",
  2268. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2269. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2270. "shasum": ""
  2271. },
  2272. "require": {
  2273. "php": ">=7.0.0",
  2274. "psr/http-message": "^1.0"
  2275. },
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-master": "1.0.x-dev"
  2280. }
  2281. },
  2282. "autoload": {
  2283. "psr-4": {
  2284. "Psr\\Http\\Message\\": "src/"
  2285. }
  2286. },
  2287. "notification-url": "https://packagist.org/downloads/",
  2288. "license": [
  2289. "MIT"
  2290. ],
  2291. "authors": [
  2292. {
  2293. "name": "PHP-FIG",
  2294. "homepage": "http://www.php-fig.org/"
  2295. }
  2296. ],
  2297. "description": "Common interfaces for PSR-7 HTTP message factories",
  2298. "keywords": [
  2299. "factory",
  2300. "http",
  2301. "message",
  2302. "psr",
  2303. "psr-17",
  2304. "psr-7",
  2305. "request",
  2306. "response"
  2307. ],
  2308. "support": {
  2309. "source": "https://github.com/php-fig/http-factory/tree/master"
  2310. },
  2311. "time": "2019-04-30T12:38:16+00:00"
  2312. },
  2313. {
  2314. "name": "psr/http-message",
  2315. "version": "1.0.1",
  2316. "source": {
  2317. "type": "git",
  2318. "url": "https://github.com/php-fig/http-message.git",
  2319. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2320. },
  2321. "dist": {
  2322. "type": "zip",
  2323. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2324. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2325. "shasum": ""
  2326. },
  2327. "require": {
  2328. "php": ">=5.3.0"
  2329. },
  2330. "type": "library",
  2331. "extra": {
  2332. "branch-alias": {
  2333. "dev-master": "1.0.x-dev"
  2334. }
  2335. },
  2336. "autoload": {
  2337. "psr-4": {
  2338. "Psr\\Http\\Message\\": "src/"
  2339. }
  2340. },
  2341. "notification-url": "https://packagist.org/downloads/",
  2342. "license": [
  2343. "MIT"
  2344. ],
  2345. "authors": [
  2346. {
  2347. "name": "PHP-FIG",
  2348. "homepage": "http://www.php-fig.org/"
  2349. }
  2350. ],
  2351. "description": "Common interface for HTTP messages",
  2352. "homepage": "https://github.com/php-fig/http-message",
  2353. "keywords": [
  2354. "http",
  2355. "http-message",
  2356. "psr",
  2357. "psr-7",
  2358. "request",
  2359. "response"
  2360. ],
  2361. "support": {
  2362. "source": "https://github.com/php-fig/http-message/tree/master"
  2363. },
  2364. "time": "2016-08-06T14:39:51+00:00"
  2365. },
  2366. {
  2367. "name": "psr/http-server-handler",
  2368. "version": "1.0.1",
  2369. "source": {
  2370. "type": "git",
  2371. "url": "https://github.com/php-fig/http-server-handler.git",
  2372. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  2373. },
  2374. "dist": {
  2375. "type": "zip",
  2376. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  2377. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  2378. "shasum": ""
  2379. },
  2380. "require": {
  2381. "php": ">=7.0",
  2382. "psr/http-message": "^1.0"
  2383. },
  2384. "type": "library",
  2385. "extra": {
  2386. "branch-alias": {
  2387. "dev-master": "1.0.x-dev"
  2388. }
  2389. },
  2390. "autoload": {
  2391. "psr-4": {
  2392. "Psr\\Http\\Server\\": "src/"
  2393. }
  2394. },
  2395. "notification-url": "https://packagist.org/downloads/",
  2396. "license": [
  2397. "MIT"
  2398. ],
  2399. "authors": [
  2400. {
  2401. "name": "PHP-FIG",
  2402. "homepage": "http://www.php-fig.org/"
  2403. }
  2404. ],
  2405. "description": "Common interface for HTTP server-side request handler",
  2406. "keywords": [
  2407. "handler",
  2408. "http",
  2409. "http-interop",
  2410. "psr",
  2411. "psr-15",
  2412. "psr-7",
  2413. "request",
  2414. "response",
  2415. "server"
  2416. ],
  2417. "support": {
  2418. "issues": "https://github.com/php-fig/http-server-handler/issues",
  2419. "source": "https://github.com/php-fig/http-server-handler/tree/master"
  2420. },
  2421. "time": "2018-10-30T16:46:14+00:00"
  2422. },
  2423. {
  2424. "name": "psr/http-server-middleware",
  2425. "version": "1.0.1",
  2426. "source": {
  2427. "type": "git",
  2428. "url": "https://github.com/php-fig/http-server-middleware.git",
  2429. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  2430. },
  2431. "dist": {
  2432. "type": "zip",
  2433. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  2434. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  2435. "shasum": ""
  2436. },
  2437. "require": {
  2438. "php": ">=7.0",
  2439. "psr/http-message": "^1.0",
  2440. "psr/http-server-handler": "^1.0"
  2441. },
  2442. "type": "library",
  2443. "extra": {
  2444. "branch-alias": {
  2445. "dev-master": "1.0.x-dev"
  2446. }
  2447. },
  2448. "autoload": {
  2449. "psr-4": {
  2450. "Psr\\Http\\Server\\": "src/"
  2451. }
  2452. },
  2453. "notification-url": "https://packagist.org/downloads/",
  2454. "license": [
  2455. "MIT"
  2456. ],
  2457. "authors": [
  2458. {
  2459. "name": "PHP-FIG",
  2460. "homepage": "http://www.php-fig.org/"
  2461. }
  2462. ],
  2463. "description": "Common interface for HTTP server-side middleware",
  2464. "keywords": [
  2465. "http",
  2466. "http-interop",
  2467. "middleware",
  2468. "psr",
  2469. "psr-15",
  2470. "psr-7",
  2471. "request",
  2472. "response"
  2473. ],
  2474. "support": {
  2475. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  2476. "source": "https://github.com/php-fig/http-server-middleware/tree/master"
  2477. },
  2478. "time": "2018-10-30T17:12:04+00:00"
  2479. },
  2480. {
  2481. "name": "psr/log",
  2482. "version": "1.1.4",
  2483. "source": {
  2484. "type": "git",
  2485. "url": "https://github.com/php-fig/log.git",
  2486. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2487. },
  2488. "dist": {
  2489. "type": "zip",
  2490. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2491. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2492. "shasum": ""
  2493. },
  2494. "require": {
  2495. "php": ">=5.3.0"
  2496. },
  2497. "type": "library",
  2498. "extra": {
  2499. "branch-alias": {
  2500. "dev-master": "1.1.x-dev"
  2501. }
  2502. },
  2503. "autoload": {
  2504. "psr-4": {
  2505. "Psr\\Log\\": "Psr/Log/"
  2506. }
  2507. },
  2508. "notification-url": "https://packagist.org/downloads/",
  2509. "license": [
  2510. "MIT"
  2511. ],
  2512. "authors": [
  2513. {
  2514. "name": "PHP-FIG",
  2515. "homepage": "https://www.php-fig.org/"
  2516. }
  2517. ],
  2518. "description": "Common interface for logging libraries",
  2519. "homepage": "https://github.com/php-fig/log",
  2520. "keywords": [
  2521. "log",
  2522. "psr",
  2523. "psr-3"
  2524. ],
  2525. "support": {
  2526. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2527. },
  2528. "time": "2021-05-03T11:20:27+00:00"
  2529. },
  2530. {
  2531. "name": "psr/simple-cache",
  2532. "version": "1.0.1",
  2533. "source": {
  2534. "type": "git",
  2535. "url": "https://github.com/php-fig/simple-cache.git",
  2536. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2537. },
  2538. "dist": {
  2539. "type": "zip",
  2540. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2541. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2542. "shasum": ""
  2543. },
  2544. "require": {
  2545. "php": ">=5.3.0"
  2546. },
  2547. "type": "library",
  2548. "extra": {
  2549. "branch-alias": {
  2550. "dev-master": "1.0.x-dev"
  2551. }
  2552. },
  2553. "autoload": {
  2554. "psr-4": {
  2555. "Psr\\SimpleCache\\": "src/"
  2556. }
  2557. },
  2558. "notification-url": "https://packagist.org/downloads/",
  2559. "license": [
  2560. "MIT"
  2561. ],
  2562. "authors": [
  2563. {
  2564. "name": "PHP-FIG",
  2565. "homepage": "http://www.php-fig.org/"
  2566. }
  2567. ],
  2568. "description": "Common interfaces for simple caching",
  2569. "keywords": [
  2570. "cache",
  2571. "caching",
  2572. "psr",
  2573. "psr-16",
  2574. "simple-cache"
  2575. ],
  2576. "time": "2017-10-23T01:57:42+00:00"
  2577. },
  2578. {
  2579. "name": "pusher/pusher-php-server",
  2580. "version": "v4.1.5",
  2581. "source": {
  2582. "type": "git",
  2583. "url": "https://github.com/pusher/pusher-http-php.git",
  2584. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  2585. },
  2586. "dist": {
  2587. "type": "zip",
  2588. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  2589. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  2590. "shasum": ""
  2591. },
  2592. "require": {
  2593. "ext-curl": "*",
  2594. "paragonie/sodium_compat": "^1.6",
  2595. "php": "^7.1|^8.0",
  2596. "psr/log": "^1.0"
  2597. },
  2598. "require-dev": {
  2599. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  2600. },
  2601. "type": "library",
  2602. "extra": {
  2603. "branch-alias": {
  2604. "dev-master": "3.4-dev"
  2605. }
  2606. },
  2607. "autoload": {
  2608. "psr-4": {
  2609. "Pusher\\": "src/"
  2610. }
  2611. },
  2612. "notification-url": "https://packagist.org/downloads/",
  2613. "license": [
  2614. "MIT"
  2615. ],
  2616. "description": "Library for interacting with the Pusher REST API",
  2617. "keywords": [
  2618. "events",
  2619. "messaging",
  2620. "php-pusher-server",
  2621. "publish",
  2622. "push",
  2623. "pusher",
  2624. "real time",
  2625. "real-time",
  2626. "realtime",
  2627. "rest",
  2628. "trigger"
  2629. ],
  2630. "support": {
  2631. "issues": "https://github.com/pusher/pusher-http-php/issues",
  2632. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  2633. },
  2634. "time": "2020-12-09T09:38:19+00:00"
  2635. },
  2636. {
  2637. "name": "ralouphie/getallheaders",
  2638. "version": "3.0.3",
  2639. "source": {
  2640. "type": "git",
  2641. "url": "https://github.com/ralouphie/getallheaders.git",
  2642. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2643. },
  2644. "dist": {
  2645. "type": "zip",
  2646. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2647. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2648. "shasum": ""
  2649. },
  2650. "require": {
  2651. "php": ">=5.6"
  2652. },
  2653. "require-dev": {
  2654. "php-coveralls/php-coveralls": "^2.1",
  2655. "phpunit/phpunit": "^5 || ^6.5"
  2656. },
  2657. "type": "library",
  2658. "autoload": {
  2659. "files": [
  2660. "src/getallheaders.php"
  2661. ]
  2662. },
  2663. "notification-url": "https://packagist.org/downloads/",
  2664. "license": [
  2665. "MIT"
  2666. ],
  2667. "authors": [
  2668. {
  2669. "name": "Ralph Khattar",
  2670. "email": "ralph.khattar@gmail.com"
  2671. }
  2672. ],
  2673. "description": "A polyfill for getallheaders.",
  2674. "support": {
  2675. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2676. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2677. },
  2678. "time": "2019-03-08T08:55:37+00:00"
  2679. },
  2680. {
  2681. "name": "ramsey/collection",
  2682. "version": "1.2.2",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/ramsey/collection.git",
  2686. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2691. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2692. "shasum": ""
  2693. },
  2694. "require": {
  2695. "php": "^7.3 || ^8",
  2696. "symfony/polyfill-php81": "^1.23"
  2697. },
  2698. "require-dev": {
  2699. "captainhook/captainhook": "^5.3",
  2700. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2701. "ergebnis/composer-normalize": "^2.6",
  2702. "fakerphp/faker": "^1.5",
  2703. "hamcrest/hamcrest-php": "^2",
  2704. "jangregor/phpstan-prophecy": "^0.8",
  2705. "mockery/mockery": "^1.3",
  2706. "phpspec/prophecy-phpunit": "^2.0",
  2707. "phpstan/extension-installer": "^1",
  2708. "phpstan/phpstan": "^0.12.32",
  2709. "phpstan/phpstan-mockery": "^0.12.5",
  2710. "phpstan/phpstan-phpunit": "^0.12.11",
  2711. "phpunit/phpunit": "^8.5 || ^9",
  2712. "psy/psysh": "^0.10.4",
  2713. "slevomat/coding-standard": "^6.3",
  2714. "squizlabs/php_codesniffer": "^3.5",
  2715. "vimeo/psalm": "^4.4"
  2716. },
  2717. "type": "library",
  2718. "autoload": {
  2719. "psr-4": {
  2720. "Ramsey\\Collection\\": "src/"
  2721. }
  2722. },
  2723. "notification-url": "https://packagist.org/downloads/",
  2724. "license": [
  2725. "MIT"
  2726. ],
  2727. "authors": [
  2728. {
  2729. "name": "Ben Ramsey",
  2730. "email": "ben@benramsey.com",
  2731. "homepage": "https://benramsey.com"
  2732. }
  2733. ],
  2734. "description": "A PHP library for representing and manipulating collections.",
  2735. "keywords": [
  2736. "array",
  2737. "collection",
  2738. "hash",
  2739. "map",
  2740. "queue",
  2741. "set"
  2742. ],
  2743. "support": {
  2744. "issues": "https://github.com/ramsey/collection/issues",
  2745. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  2746. },
  2747. "funding": [
  2748. {
  2749. "url": "https://github.com/ramsey",
  2750. "type": "github"
  2751. },
  2752. {
  2753. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2754. "type": "tidelift"
  2755. }
  2756. ],
  2757. "time": "2021-10-10T03:01:02+00:00"
  2758. },
  2759. {
  2760. "name": "ramsey/uuid",
  2761. "version": "4.2.3",
  2762. "source": {
  2763. "type": "git",
  2764. "url": "https://github.com/ramsey/uuid.git",
  2765. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  2766. },
  2767. "dist": {
  2768. "type": "zip",
  2769. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2770. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2771. "shasum": ""
  2772. },
  2773. "require": {
  2774. "brick/math": "^0.8 || ^0.9",
  2775. "ext-json": "*",
  2776. "php": "^7.2 || ^8.0",
  2777. "ramsey/collection": "^1.0",
  2778. "symfony/polyfill-ctype": "^1.8",
  2779. "symfony/polyfill-php80": "^1.14"
  2780. },
  2781. "replace": {
  2782. "rhumsaa/uuid": "self.version"
  2783. },
  2784. "require-dev": {
  2785. "captainhook/captainhook": "^5.10",
  2786. "captainhook/plugin-composer": "^5.3",
  2787. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2788. "doctrine/annotations": "^1.8",
  2789. "ergebnis/composer-normalize": "^2.15",
  2790. "mockery/mockery": "^1.3",
  2791. "moontoast/math": "^1.1",
  2792. "paragonie/random-lib": "^2",
  2793. "php-mock/php-mock": "^2.2",
  2794. "php-mock/php-mock-mockery": "^1.3",
  2795. "php-parallel-lint/php-parallel-lint": "^1.1",
  2796. "phpbench/phpbench": "^1.0",
  2797. "phpstan/extension-installer": "^1.0",
  2798. "phpstan/phpstan": "^0.12",
  2799. "phpstan/phpstan-mockery": "^0.12",
  2800. "phpstan/phpstan-phpunit": "^0.12",
  2801. "phpunit/phpunit": "^8.5 || ^9",
  2802. "slevomat/coding-standard": "^7.0",
  2803. "squizlabs/php_codesniffer": "^3.5",
  2804. "vimeo/psalm": "^4.9"
  2805. },
  2806. "suggest": {
  2807. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2808. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2809. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2810. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2811. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2812. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2813. },
  2814. "type": "library",
  2815. "extra": {
  2816. "branch-alias": {
  2817. "dev-main": "4.x-dev"
  2818. },
  2819. "captainhook": {
  2820. "force-install": true
  2821. }
  2822. },
  2823. "autoload": {
  2824. "files": [
  2825. "src/functions.php"
  2826. ],
  2827. "psr-4": {
  2828. "Ramsey\\Uuid\\": "src/"
  2829. }
  2830. },
  2831. "notification-url": "https://packagist.org/downloads/",
  2832. "license": [
  2833. "MIT"
  2834. ],
  2835. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2836. "keywords": [
  2837. "guid",
  2838. "identifier",
  2839. "uuid"
  2840. ],
  2841. "support": {
  2842. "issues": "https://github.com/ramsey/uuid/issues",
  2843. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  2844. },
  2845. "funding": [
  2846. {
  2847. "url": "https://github.com/ramsey",
  2848. "type": "github"
  2849. },
  2850. {
  2851. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2852. "type": "tidelift"
  2853. }
  2854. ],
  2855. "time": "2021-09-25T23:10:38+00:00"
  2856. },
  2857. {
  2858. "name": "rmccue/requests",
  2859. "version": "v1.8.0",
  2860. "source": {
  2861. "type": "git",
  2862. "url": "https://github.com/WordPress/Requests.git",
  2863. "reference": "afbe4790e4def03581c4a0963a1e8aa01f6030f1"
  2864. },
  2865. "dist": {
  2866. "type": "zip",
  2867. "url": "https://api.github.com/repos/WordPress/Requests/zipball/afbe4790e4def03581c4a0963a1e8aa01f6030f1",
  2868. "reference": "afbe4790e4def03581c4a0963a1e8aa01f6030f1",
  2869. "shasum": ""
  2870. },
  2871. "require": {
  2872. "php": ">=5.2"
  2873. },
  2874. "require-dev": {
  2875. "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
  2876. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  2877. "php-parallel-lint/php-parallel-lint": "^1.3",
  2878. "phpcompatibility/php-compatibility": "^9.0",
  2879. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5",
  2880. "requests/test-server": "dev-master",
  2881. "squizlabs/php_codesniffer": "^3.5",
  2882. "wp-coding-standards/wpcs": "^2.0"
  2883. },
  2884. "type": "library",
  2885. "autoload": {
  2886. "psr-0": {
  2887. "Requests": "library/"
  2888. }
  2889. },
  2890. "notification-url": "https://packagist.org/downloads/",
  2891. "license": [
  2892. "ISC"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "Ryan McCue",
  2897. "homepage": "http://ryanmccue.info"
  2898. }
  2899. ],
  2900. "description": "A HTTP library written in PHP, for human beings.",
  2901. "homepage": "http://github.com/WordPress/Requests",
  2902. "keywords": [
  2903. "curl",
  2904. "fsockopen",
  2905. "http",
  2906. "idna",
  2907. "ipv6",
  2908. "iri",
  2909. "sockets"
  2910. ],
  2911. "support": {
  2912. "issues": "https://github.com/WordPress/Requests/issues",
  2913. "source": "https://github.com/WordPress/Requests/tree/v1.8.0"
  2914. },
  2915. "time": "2021-04-27T11:05:25+00:00"
  2916. },
  2917. {
  2918. "name": "simshaun/recurr",
  2919. "version": "v5.0.0",
  2920. "source": {
  2921. "type": "git",
  2922. "url": "https://github.com/simshaun/recurr.git",
  2923. "reference": "b5aa5b07a595023b67a558b810390dfa7160e3f5"
  2924. },
  2925. "dist": {
  2926. "type": "zip",
  2927. "url": "https://api.github.com/repos/simshaun/recurr/zipball/b5aa5b07a595023b67a558b810390dfa7160e3f5",
  2928. "reference": "b5aa5b07a595023b67a558b810390dfa7160e3f5",
  2929. "shasum": ""
  2930. },
  2931. "require": {
  2932. "doctrine/collections": "~1.6",
  2933. "php": "^7.2||^8.0"
  2934. },
  2935. "require-dev": {
  2936. "phpunit/phpunit": "^8.5.16",
  2937. "symfony/yaml": "^5.3"
  2938. },
  2939. "type": "library",
  2940. "extra": {
  2941. "branch-alias": {
  2942. "dev-master": "0.x-dev"
  2943. }
  2944. },
  2945. "autoload": {
  2946. "psr-4": {
  2947. "Recurr\\": "src/Recurr/"
  2948. }
  2949. },
  2950. "notification-url": "https://packagist.org/downloads/",
  2951. "license": [
  2952. "MIT"
  2953. ],
  2954. "authors": [
  2955. {
  2956. "name": "Shaun Simmons",
  2957. "email": "shaun@shaun.pub",
  2958. "homepage": "https://shaun.pub"
  2959. }
  2960. ],
  2961. "description": "PHP library for working with recurrence rules",
  2962. "homepage": "https://github.com/simshaun/recurr",
  2963. "keywords": [
  2964. "dates",
  2965. "events",
  2966. "recurrence",
  2967. "recurring",
  2968. "rrule"
  2969. ],
  2970. "support": {
  2971. "issues": "https://github.com/simshaun/recurr/issues",
  2972. "source": "https://github.com/simshaun/recurr/tree/v5.0.0"
  2973. },
  2974. "time": "2021-09-09T03:42:57+00:00"
  2975. },
  2976. {
  2977. "name": "slim/psr7",
  2978. "version": "1.3.0",
  2979. "source": {
  2980. "type": "git",
  2981. "url": "https://github.com/slimphp/Slim-Psr7.git",
  2982. "reference": "235d2e5a5ee1ad4b97b96870f37f3091b22fffd7"
  2983. },
  2984. "dist": {
  2985. "type": "zip",
  2986. "url": "https://api.github.com/repos/slimphp/Slim-Psr7/zipball/235d2e5a5ee1ad4b97b96870f37f3091b22fffd7",
  2987. "reference": "235d2e5a5ee1ad4b97b96870f37f3091b22fffd7",
  2988. "shasum": ""
  2989. },
  2990. "require": {
  2991. "fig/http-message-util": "^1.1.4",
  2992. "php": "^7.2 || ^8.0",
  2993. "psr/http-factory": "^1.0",
  2994. "psr/http-message": "^1.0",
  2995. "ralouphie/getallheaders": "^3",
  2996. "symfony/polyfill-php80": "^1.18"
  2997. },
  2998. "provide": {
  2999. "psr/http-factory-implementation": "1.0",
  3000. "psr/http-message-implementation": "1.0"
  3001. },
  3002. "require-dev": {
  3003. "adriansuter/php-autoload-override": "^1.2",
  3004. "ext-json": "*",
  3005. "http-interop/http-factory-tests": "^0.7.0",
  3006. "php-http/psr7-integration-tests": "dev-master",
  3007. "phpstan/phpstan": "^0.12",
  3008. "phpunit/phpunit": "^8.5 || ^9.3",
  3009. "squizlabs/php_codesniffer": "^3.5",
  3010. "weirdan/prophecy-shim": "^1.0 || ^2.0.2"
  3011. },
  3012. "type": "library",
  3013. "autoload": {
  3014. "psr-4": {
  3015. "Slim\\Psr7\\": "src"
  3016. }
  3017. },
  3018. "notification-url": "https://packagist.org/downloads/",
  3019. "license": [
  3020. "MIT"
  3021. ],
  3022. "authors": [
  3023. {
  3024. "name": "Josh Lockhart",
  3025. "email": "hello@joshlockhart.com",
  3026. "homepage": "http://joshlockhart.com"
  3027. },
  3028. {
  3029. "name": "Andrew Smith",
  3030. "email": "a.smith@silentworks.co.uk",
  3031. "homepage": "http://silentworks.co.uk"
  3032. },
  3033. {
  3034. "name": "Rob Allen",
  3035. "email": "rob@akrabat.com",
  3036. "homepage": "http://akrabat.com"
  3037. },
  3038. {
  3039. "name": "Pierre Berube",
  3040. "email": "pierre@lgse.com",
  3041. "homepage": "http://www.lgse.com"
  3042. }
  3043. ],
  3044. "description": "Strict PSR-7 implementation",
  3045. "homepage": "https://www.slimframework.com",
  3046. "keywords": [
  3047. "http",
  3048. "psr-7",
  3049. "psr7"
  3050. ],
  3051. "support": {
  3052. "issues": "https://github.com/slimphp/Slim-Psr7/issues",
  3053. "source": "https://github.com/slimphp/Slim-Psr7/tree/1.3.0"
  3054. },
  3055. "time": "2020-11-28T06:28:46+00:00"
  3056. },
  3057. {
  3058. "name": "slim/slim",
  3059. "version": "4.7.1",
  3060. "source": {
  3061. "type": "git",
  3062. "url": "https://github.com/slimphp/Slim.git",
  3063. "reference": "0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f"
  3064. },
  3065. "dist": {
  3066. "type": "zip",
  3067. "url": "https://api.github.com/repos/slimphp/Slim/zipball/0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f",
  3068. "reference": "0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f",
  3069. "shasum": ""
  3070. },
  3071. "require": {
  3072. "ext-json": "*",
  3073. "nikic/fast-route": "^1.3",
  3074. "php": "^7.2 || ^8.0",
  3075. "psr/container": "^1.0",
  3076. "psr/http-factory": "^1.0",
  3077. "psr/http-message": "^1.0",
  3078. "psr/http-server-handler": "^1.0",
  3079. "psr/http-server-middleware": "^1.0",
  3080. "psr/log": "^1.1"
  3081. },
  3082. "require-dev": {
  3083. "adriansuter/php-autoload-override": "^1.2",
  3084. "ext-simplexml": "*",
  3085. "guzzlehttp/psr7": "^1.7",
  3086. "http-interop/http-factory-guzzle": "^1.0",
  3087. "laminas/laminas-diactoros": "^2.4",
  3088. "nyholm/psr7": "^1.3",
  3089. "nyholm/psr7-server": "^1.0.1",
  3090. "phpspec/prophecy": "^1.12",
  3091. "phpstan/phpstan": "^0.12.58",
  3092. "phpunit/phpunit": "^8.5.13",
  3093. "slim/http": "^1.2",
  3094. "slim/psr7": "^1.3",
  3095. "squizlabs/php_codesniffer": "^3.5",
  3096. "weirdan/prophecy-shim": "^1.0 || ^2.0.2"
  3097. },
  3098. "suggest": {
  3099. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  3100. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  3101. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  3102. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  3103. },
  3104. "type": "library",
  3105. "autoload": {
  3106. "psr-4": {
  3107. "Slim\\": "Slim"
  3108. }
  3109. },
  3110. "notification-url": "https://packagist.org/downloads/",
  3111. "license": [
  3112. "MIT"
  3113. ],
  3114. "authors": [
  3115. {
  3116. "name": "Josh Lockhart",
  3117. "email": "hello@joshlockhart.com",
  3118. "homepage": "https://joshlockhart.com"
  3119. },
  3120. {
  3121. "name": "Andrew Smith",
  3122. "email": "a.smith@silentworks.co.uk",
  3123. "homepage": "http://silentworks.co.uk"
  3124. },
  3125. {
  3126. "name": "Rob Allen",
  3127. "email": "rob@akrabat.com",
  3128. "homepage": "http://akrabat.com"
  3129. },
  3130. {
  3131. "name": "Pierre Berube",
  3132. "email": "pierre@lgse.com",
  3133. "homepage": "http://www.lgse.com"
  3134. },
  3135. {
  3136. "name": "Gabriel Manricks",
  3137. "email": "gmanricks@me.com",
  3138. "homepage": "http://gabrielmanricks.com"
  3139. }
  3140. ],
  3141. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  3142. "homepage": "https://www.slimframework.com",
  3143. "keywords": [
  3144. "api",
  3145. "framework",
  3146. "micro",
  3147. "router"
  3148. ],
  3149. "support": {
  3150. "docs": "https://www.slimframework.com/docs/v4/",
  3151. "forum": "https://discourse.slimframework.com/",
  3152. "irc": "irc://irc.freenode.net:6667/slimphp",
  3153. "issues": "https://github.com/slimphp/Slim/issues",
  3154. "rss": "https://www.slimframework.com/blog/feed.rss",
  3155. "slack": "https://slimphp.slack.com/",
  3156. "source": "https://github.com/slimphp/Slim",
  3157. "wiki": "https://github.com/slimphp/Slim/wiki"
  3158. },
  3159. "funding": [
  3160. {
  3161. "url": "https://opencollective.com/slimphp",
  3162. "type": "open_collective"
  3163. },
  3164. {
  3165. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  3166. "type": "tidelift"
  3167. }
  3168. ],
  3169. "time": "2020-12-01T19:41:22+00:00"
  3170. },
  3171. {
  3172. "name": "stripe/stripe-php",
  3173. "version": "v7.116.0",
  3174. "source": {
  3175. "type": "git",
  3176. "url": "https://github.com/stripe/stripe-php.git",
  3177. "reference": "7a39f594f213ed3f443a95adf769d1ecbc8393e7"
  3178. },
  3179. "dist": {
  3180. "type": "zip",
  3181. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/7a39f594f213ed3f443a95adf769d1ecbc8393e7",
  3182. "reference": "7a39f594f213ed3f443a95adf769d1ecbc8393e7",
  3183. "shasum": ""
  3184. },
  3185. "require": {
  3186. "ext-curl": "*",
  3187. "ext-json": "*",
  3188. "ext-mbstring": "*",
  3189. "php": ">=5.6.0"
  3190. },
  3191. "require-dev": {
  3192. "friendsofphp/php-cs-fixer": "3.5.0",
  3193. "phpstan/phpstan": "^1.2",
  3194. "phpunit/phpunit": "^5.7 || ^9.0",
  3195. "squizlabs/php_codesniffer": "^3.3"
  3196. },
  3197. "type": "library",
  3198. "extra": {
  3199. "branch-alias": {
  3200. "dev-master": "2.0-dev"
  3201. }
  3202. },
  3203. "autoload": {
  3204. "psr-4": {
  3205. "Stripe\\": "lib/"
  3206. }
  3207. },
  3208. "notification-url": "https://packagist.org/downloads/",
  3209. "license": [
  3210. "MIT"
  3211. ],
  3212. "authors": [
  3213. {
  3214. "name": "Stripe and contributors",
  3215. "homepage": "https://github.com/stripe/stripe-php/contributors"
  3216. }
  3217. ],
  3218. "description": "Stripe PHP Library",
  3219. "homepage": "https://stripe.com/",
  3220. "keywords": [
  3221. "api",
  3222. "payment processing",
  3223. "stripe"
  3224. ],
  3225. "support": {
  3226. "issues": "https://github.com/stripe/stripe-php/issues",
  3227. "source": "https://github.com/stripe/stripe-php/tree/v7.116.0"
  3228. },
  3229. "time": "2022-03-02T15:51:15+00:00"
  3230. },
  3231. {
  3232. "name": "symfony/deprecation-contracts",
  3233. "version": "v2.1.3",
  3234. "source": {
  3235. "type": "git",
  3236. "url": "https://github.com/symfony/deprecation-contracts.git",
  3237. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14"
  3238. },
  3239. "dist": {
  3240. "type": "zip",
  3241. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  3242. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  3243. "shasum": ""
  3244. },
  3245. "require": {
  3246. "php": ">=7.1"
  3247. },
  3248. "type": "library",
  3249. "extra": {
  3250. "branch-alias": {
  3251. "dev-master": "2.1-dev"
  3252. },
  3253. "thanks": {
  3254. "name": "symfony/contracts",
  3255. "url": "https://github.com/symfony/contracts"
  3256. }
  3257. },
  3258. "autoload": {
  3259. "files": [
  3260. "function.php"
  3261. ]
  3262. },
  3263. "notification-url": "https://packagist.org/downloads/",
  3264. "license": [
  3265. "MIT"
  3266. ],
  3267. "authors": [
  3268. {
  3269. "name": "Nicolas Grekas",
  3270. "email": "p@tchwork.com"
  3271. },
  3272. {
  3273. "name": "Symfony Community",
  3274. "homepage": "https://symfony.com/contributors"
  3275. }
  3276. ],
  3277. "description": "A generic function and convention to trigger deprecation notices",
  3278. "homepage": "https://symfony.com",
  3279. "time": "2020-06-06T08:49:21+00:00"
  3280. },
  3281. {
  3282. "name": "symfony/finder",
  3283. "version": "v5.1.3",
  3284. "source": {
  3285. "type": "git",
  3286. "url": "https://github.com/symfony/finder.git",
  3287. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187"
  3288. },
  3289. "dist": {
  3290. "type": "zip",
  3291. "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187",
  3292. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187",
  3293. "shasum": ""
  3294. },
  3295. "require": {
  3296. "php": ">=7.2.5"
  3297. },
  3298. "type": "library",
  3299. "extra": {
  3300. "branch-alias": {
  3301. "dev-master": "5.1-dev"
  3302. }
  3303. },
  3304. "autoload": {
  3305. "psr-4": {
  3306. "Symfony\\Component\\Finder\\": ""
  3307. },
  3308. "exclude-from-classmap": [
  3309. "/Tests/"
  3310. ]
  3311. },
  3312. "notification-url": "https://packagist.org/downloads/",
  3313. "license": [
  3314. "MIT"
  3315. ],
  3316. "authors": [
  3317. {
  3318. "name": "Fabien Potencier",
  3319. "email": "fabien@symfony.com"
  3320. },
  3321. {
  3322. "name": "Symfony Community",
  3323. "homepage": "https://symfony.com/contributors"
  3324. }
  3325. ],
  3326. "description": "Symfony Finder Component",
  3327. "homepage": "https://symfony.com",
  3328. "time": "2020-05-20T17:43:50+00:00"
  3329. },
  3330. {
  3331. "name": "symfony/polyfill-ctype",
  3332. "version": "v1.22.1",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/symfony/polyfill-ctype.git",
  3336. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  3341. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  3342. "shasum": ""
  3343. },
  3344. "require": {
  3345. "php": ">=7.1"
  3346. },
  3347. "suggest": {
  3348. "ext-ctype": "For best performance"
  3349. },
  3350. "type": "library",
  3351. "extra": {
  3352. "branch-alias": {
  3353. "dev-main": "1.22-dev"
  3354. },
  3355. "thanks": {
  3356. "name": "symfony/polyfill",
  3357. "url": "https://github.com/symfony/polyfill"
  3358. }
  3359. },
  3360. "autoload": {
  3361. "psr-4": {
  3362. "Symfony\\Polyfill\\Ctype\\": ""
  3363. },
  3364. "files": [
  3365. "bootstrap.php"
  3366. ]
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "Gert de Pagter",
  3375. "email": "BackEndTea@gmail.com"
  3376. },
  3377. {
  3378. "name": "Symfony Community",
  3379. "homepage": "https://symfony.com/contributors"
  3380. }
  3381. ],
  3382. "description": "Symfony polyfill for ctype functions",
  3383. "homepage": "https://symfony.com",
  3384. "keywords": [
  3385. "compatibility",
  3386. "ctype",
  3387. "polyfill",
  3388. "portable"
  3389. ],
  3390. "support": {
  3391. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  3392. },
  3393. "funding": [
  3394. {
  3395. "url": "https://symfony.com/sponsor",
  3396. "type": "custom"
  3397. },
  3398. {
  3399. "url": "https://github.com/fabpot",
  3400. "type": "github"
  3401. },
  3402. {
  3403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3404. "type": "tidelift"
  3405. }
  3406. ],
  3407. "time": "2021-01-07T16:49:33+00:00"
  3408. },
  3409. {
  3410. "name": "symfony/polyfill-mbstring",
  3411. "version": "v1.22.1",
  3412. "source": {
  3413. "type": "git",
  3414. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3415. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  3416. },
  3417. "dist": {
  3418. "type": "zip",
  3419. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  3420. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  3421. "shasum": ""
  3422. },
  3423. "require": {
  3424. "php": ">=7.1"
  3425. },
  3426. "suggest": {
  3427. "ext-mbstring": "For best performance"
  3428. },
  3429. "type": "library",
  3430. "extra": {
  3431. "branch-alias": {
  3432. "dev-main": "1.22-dev"
  3433. },
  3434. "thanks": {
  3435. "name": "symfony/polyfill",
  3436. "url": "https://github.com/symfony/polyfill"
  3437. }
  3438. },
  3439. "autoload": {
  3440. "psr-4": {
  3441. "Symfony\\Polyfill\\Mbstring\\": ""
  3442. },
  3443. "files": [
  3444. "bootstrap.php"
  3445. ]
  3446. },
  3447. "notification-url": "https://packagist.org/downloads/",
  3448. "license": [
  3449. "MIT"
  3450. ],
  3451. "authors": [
  3452. {
  3453. "name": "Nicolas Grekas",
  3454. "email": "p@tchwork.com"
  3455. },
  3456. {
  3457. "name": "Symfony Community",
  3458. "homepage": "https://symfony.com/contributors"
  3459. }
  3460. ],
  3461. "description": "Symfony polyfill for the Mbstring extension",
  3462. "homepage": "https://symfony.com",
  3463. "keywords": [
  3464. "compatibility",
  3465. "mbstring",
  3466. "polyfill",
  3467. "portable",
  3468. "shim"
  3469. ],
  3470. "support": {
  3471. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  3472. },
  3473. "funding": [
  3474. {
  3475. "url": "https://symfony.com/sponsor",
  3476. "type": "custom"
  3477. },
  3478. {
  3479. "url": "https://github.com/fabpot",
  3480. "type": "github"
  3481. },
  3482. {
  3483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3484. "type": "tidelift"
  3485. }
  3486. ],
  3487. "time": "2021-01-22T09:19:47+00:00"
  3488. },
  3489. {
  3490. "name": "symfony/polyfill-php56",
  3491. "version": "v1.9.0",
  3492. "source": {
  3493. "type": "git",
  3494. "url": "https://github.com/symfony/polyfill-php56.git",
  3495. "reference": "7b4fc009172cc0196535b0328bd1226284a28000"
  3496. },
  3497. "dist": {
  3498. "type": "zip",
  3499. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/7b4fc009172cc0196535b0328bd1226284a28000",
  3500. "reference": "7b4fc009172cc0196535b0328bd1226284a28000",
  3501. "shasum": ""
  3502. },
  3503. "require": {
  3504. "php": ">=5.3.3",
  3505. "symfony/polyfill-util": "~1.0"
  3506. },
  3507. "type": "library",
  3508. "extra": {
  3509. "branch-alias": {
  3510. "dev-master": "1.9-dev"
  3511. }
  3512. },
  3513. "autoload": {
  3514. "psr-4": {
  3515. "Symfony\\Polyfill\\Php56\\": ""
  3516. },
  3517. "files": [
  3518. "bootstrap.php"
  3519. ]
  3520. },
  3521. "notification-url": "https://packagist.org/downloads/",
  3522. "license": [
  3523. "MIT"
  3524. ],
  3525. "authors": [
  3526. {
  3527. "name": "Nicolas Grekas",
  3528. "email": "p@tchwork.com"
  3529. },
  3530. {
  3531. "name": "Symfony Community",
  3532. "homepage": "https://symfony.com/contributors"
  3533. }
  3534. ],
  3535. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3536. "homepage": "https://symfony.com",
  3537. "keywords": [
  3538. "compatibility",
  3539. "polyfill",
  3540. "portable",
  3541. "shim"
  3542. ],
  3543. "time": "2018-08-06T14:22:27+00:00"
  3544. },
  3545. {
  3546. "name": "symfony/polyfill-php72",
  3547. "version": "v1.22.1",
  3548. "source": {
  3549. "type": "git",
  3550. "url": "https://github.com/symfony/polyfill-php72.git",
  3551. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  3552. },
  3553. "dist": {
  3554. "type": "zip",
  3555. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3556. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3557. "shasum": ""
  3558. },
  3559. "require": {
  3560. "php": ">=7.1"
  3561. },
  3562. "type": "library",
  3563. "extra": {
  3564. "branch-alias": {
  3565. "dev-main": "1.22-dev"
  3566. },
  3567. "thanks": {
  3568. "name": "symfony/polyfill",
  3569. "url": "https://github.com/symfony/polyfill"
  3570. }
  3571. },
  3572. "autoload": {
  3573. "psr-4": {
  3574. "Symfony\\Polyfill\\Php72\\": ""
  3575. },
  3576. "files": [
  3577. "bootstrap.php"
  3578. ]
  3579. },
  3580. "notification-url": "https://packagist.org/downloads/",
  3581. "license": [
  3582. "MIT"
  3583. ],
  3584. "authors": [
  3585. {
  3586. "name": "Nicolas Grekas",
  3587. "email": "p@tchwork.com"
  3588. },
  3589. {
  3590. "name": "Symfony Community",
  3591. "homepage": "https://symfony.com/contributors"
  3592. }
  3593. ],
  3594. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3595. "homepage": "https://symfony.com",
  3596. "keywords": [
  3597. "compatibility",
  3598. "polyfill",
  3599. "portable",
  3600. "shim"
  3601. ],
  3602. "support": {
  3603. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  3604. },
  3605. "funding": [
  3606. {
  3607. "url": "https://symfony.com/sponsor",
  3608. "type": "custom"
  3609. },
  3610. {
  3611. "url": "https://github.com/fabpot",
  3612. "type": "github"
  3613. },
  3614. {
  3615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3616. "type": "tidelift"
  3617. }
  3618. ],
  3619. "time": "2021-01-07T16:49:33+00:00"
  3620. },
  3621. {
  3622. "name": "symfony/polyfill-php80",
  3623. "version": "v1.22.1",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/symfony/polyfill-php80.git",
  3627. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  3632. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  3633. "shasum": ""
  3634. },
  3635. "require": {
  3636. "php": ">=7.1"
  3637. },
  3638. "type": "library",
  3639. "extra": {
  3640. "branch-alias": {
  3641. "dev-main": "1.22-dev"
  3642. },
  3643. "thanks": {
  3644. "name": "symfony/polyfill",
  3645. "url": "https://github.com/symfony/polyfill"
  3646. }
  3647. },
  3648. "autoload": {
  3649. "psr-4": {
  3650. "Symfony\\Polyfill\\Php80\\": ""
  3651. },
  3652. "files": [
  3653. "bootstrap.php"
  3654. ],
  3655. "classmap": [
  3656. "Resources/stubs"
  3657. ]
  3658. },
  3659. "notification-url": "https://packagist.org/downloads/",
  3660. "license": [
  3661. "MIT"
  3662. ],
  3663. "authors": [
  3664. {
  3665. "name": "Ion Bazan",
  3666. "email": "ion.bazan@gmail.com"
  3667. },
  3668. {
  3669. "name": "Nicolas Grekas",
  3670. "email": "p@tchwork.com"
  3671. },
  3672. {
  3673. "name": "Symfony Community",
  3674. "homepage": "https://symfony.com/contributors"
  3675. }
  3676. ],
  3677. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3678. "homepage": "https://symfony.com",
  3679. "keywords": [
  3680. "compatibility",
  3681. "polyfill",
  3682. "portable",
  3683. "shim"
  3684. ],
  3685. "support": {
  3686. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  3687. },
  3688. "funding": [
  3689. {
  3690. "url": "https://symfony.com/sponsor",
  3691. "type": "custom"
  3692. },
  3693. {
  3694. "url": "https://github.com/fabpot",
  3695. "type": "github"
  3696. },
  3697. {
  3698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3699. "type": "tidelift"
  3700. }
  3701. ],
  3702. "time": "2021-01-07T16:49:33+00:00"
  3703. },
  3704. {
  3705. "name": "symfony/polyfill-php81",
  3706. "version": "v1.25.0",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://github.com/symfony/polyfill-php81.git",
  3710. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  3715. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  3716. "shasum": ""
  3717. },
  3718. "require": {
  3719. "php": ">=7.1"
  3720. },
  3721. "type": "library",
  3722. "extra": {
  3723. "branch-alias": {
  3724. "dev-main": "1.23-dev"
  3725. },
  3726. "thanks": {
  3727. "name": "symfony/polyfill",
  3728. "url": "https://github.com/symfony/polyfill"
  3729. }
  3730. },
  3731. "autoload": {
  3732. "files": [
  3733. "bootstrap.php"
  3734. ],
  3735. "psr-4": {
  3736. "Symfony\\Polyfill\\Php81\\": ""
  3737. },
  3738. "classmap": [
  3739. "Resources/stubs"
  3740. ]
  3741. },
  3742. "notification-url": "https://packagist.org/downloads/",
  3743. "license": [
  3744. "MIT"
  3745. ],
  3746. "authors": [
  3747. {
  3748. "name": "Nicolas Grekas",
  3749. "email": "p@tchwork.com"
  3750. },
  3751. {
  3752. "name": "Symfony Community",
  3753. "homepage": "https://symfony.com/contributors"
  3754. }
  3755. ],
  3756. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  3757. "homepage": "https://symfony.com",
  3758. "keywords": [
  3759. "compatibility",
  3760. "polyfill",
  3761. "portable",
  3762. "shim"
  3763. ],
  3764. "support": {
  3765. "source": "https://github.com/symfony/polyfill-php81/tree/v1.25.0"
  3766. },
  3767. "funding": [
  3768. {
  3769. "url": "https://symfony.com/sponsor",
  3770. "type": "custom"
  3771. },
  3772. {
  3773. "url": "https://github.com/fabpot",
  3774. "type": "github"
  3775. },
  3776. {
  3777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3778. "type": "tidelift"
  3779. }
  3780. ],
  3781. "time": "2021-09-13T13:58:11+00:00"
  3782. },
  3783. {
  3784. "name": "symfony/polyfill-util",
  3785. "version": "v1.9.0",
  3786. "source": {
  3787. "type": "git",
  3788. "url": "https://github.com/symfony/polyfill-util.git",
  3789. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581"
  3790. },
  3791. "dist": {
  3792. "type": "zip",
  3793. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  3794. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  3795. "shasum": ""
  3796. },
  3797. "require": {
  3798. "php": ">=5.3.3"
  3799. },
  3800. "type": "library",
  3801. "extra": {
  3802. "branch-alias": {
  3803. "dev-master": "1.9-dev"
  3804. }
  3805. },
  3806. "autoload": {
  3807. "psr-4": {
  3808. "Symfony\\Polyfill\\Util\\": ""
  3809. }
  3810. },
  3811. "notification-url": "https://packagist.org/downloads/",
  3812. "license": [
  3813. "MIT"
  3814. ],
  3815. "authors": [
  3816. {
  3817. "name": "Nicolas Grekas",
  3818. "email": "p@tchwork.com"
  3819. },
  3820. {
  3821. "name": "Symfony Community",
  3822. "homepage": "https://symfony.com/contributors"
  3823. }
  3824. ],
  3825. "description": "Symfony utilities for portability of PHP codes",
  3826. "homepage": "https://symfony.com",
  3827. "keywords": [
  3828. "compat",
  3829. "compatibility",
  3830. "polyfill",
  3831. "shim"
  3832. ],
  3833. "time": "2018-08-06T14:22:27+00:00"
  3834. },
  3835. {
  3836. "name": "symfony/var-dumper",
  3837. "version": "v4.2.3",
  3838. "source": {
  3839. "type": "git",
  3840. "url": "https://github.com/symfony/var-dumper.git",
  3841. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17"
  3842. },
  3843. "dist": {
  3844. "type": "zip",
  3845. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/223bda89f9be41cf7033eeaf11bc61a280489c17",
  3846. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17",
  3847. "shasum": ""
  3848. },
  3849. "require": {
  3850. "php": "^7.1.3",
  3851. "symfony/polyfill-mbstring": "~1.0",
  3852. "symfony/polyfill-php72": "~1.5"
  3853. },
  3854. "conflict": {
  3855. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3856. "symfony/console": "<3.4"
  3857. },
  3858. "require-dev": {
  3859. "ext-iconv": "*",
  3860. "symfony/console": "~3.4|~4.0",
  3861. "symfony/process": "~3.4|~4.0",
  3862. "twig/twig": "~1.34|~2.4"
  3863. },
  3864. "suggest": {
  3865. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3866. "ext-intl": "To show region name in time zone dump",
  3867. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3868. },
  3869. "bin": [
  3870. "Resources/bin/var-dump-server"
  3871. ],
  3872. "type": "library",
  3873. "extra": {
  3874. "branch-alias": {
  3875. "dev-master": "4.2-dev"
  3876. }
  3877. },
  3878. "autoload": {
  3879. "files": [
  3880. "Resources/functions/dump.php"
  3881. ],
  3882. "psr-4": {
  3883. "Symfony\\Component\\VarDumper\\": ""
  3884. },
  3885. "exclude-from-classmap": [
  3886. "/Tests/"
  3887. ]
  3888. },
  3889. "notification-url": "https://packagist.org/downloads/",
  3890. "license": [
  3891. "MIT"
  3892. ],
  3893. "authors": [
  3894. {
  3895. "name": "Nicolas Grekas",
  3896. "email": "p@tchwork.com"
  3897. },
  3898. {
  3899. "name": "Symfony Community",
  3900. "homepage": "https://symfony.com/contributors"
  3901. }
  3902. ],
  3903. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3904. "homepage": "https://symfony.com",
  3905. "keywords": [
  3906. "debug",
  3907. "dump"
  3908. ],
  3909. "time": "2019-01-30T11:44:30+00:00"
  3910. },
  3911. {
  3912. "name": "symfony/yaml",
  3913. "version": "v5.1.3",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/symfony/yaml.git",
  3917. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/symfony/yaml/zipball/ea342353a3ef4f453809acc4ebc55382231d4d23",
  3922. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23",
  3923. "shasum": ""
  3924. },
  3925. "require": {
  3926. "php": ">=7.2.5",
  3927. "symfony/deprecation-contracts": "^2.1",
  3928. "symfony/polyfill-ctype": "~1.8"
  3929. },
  3930. "conflict": {
  3931. "symfony/console": "<4.4"
  3932. },
  3933. "require-dev": {
  3934. "symfony/console": "^4.4|^5.0"
  3935. },
  3936. "suggest": {
  3937. "symfony/console": "For validating YAML files using the lint command"
  3938. },
  3939. "bin": [
  3940. "Resources/bin/yaml-lint"
  3941. ],
  3942. "type": "library",
  3943. "extra": {
  3944. "branch-alias": {
  3945. "dev-master": "5.1-dev"
  3946. }
  3947. },
  3948. "autoload": {
  3949. "psr-4": {
  3950. "Symfony\\Component\\Yaml\\": ""
  3951. },
  3952. "exclude-from-classmap": [
  3953. "/Tests/"
  3954. ]
  3955. },
  3956. "notification-url": "https://packagist.org/downloads/",
  3957. "license": [
  3958. "MIT"
  3959. ],
  3960. "authors": [
  3961. {
  3962. "name": "Fabien Potencier",
  3963. "email": "fabien@symfony.com"
  3964. },
  3965. {
  3966. "name": "Symfony Community",
  3967. "homepage": "https://symfony.com/contributors"
  3968. }
  3969. ],
  3970. "description": "Symfony Yaml Component",
  3971. "homepage": "https://symfony.com",
  3972. "time": "2020-05-20T17:43:50+00:00"
  3973. },
  3974. {
  3975. "name": "tightenco/collect",
  3976. "version": "v5.7.27",
  3977. "source": {
  3978. "type": "git",
  3979. "url": "https://github.com/tightenco/collect.git",
  3980. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00"
  3981. },
  3982. "dist": {
  3983. "type": "zip",
  3984. "url": "https://api.github.com/repos/tightenco/collect/zipball/c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  3985. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  3986. "shasum": ""
  3987. },
  3988. "require": {
  3989. "php": "^7.1.3",
  3990. "symfony/var-dumper": ">=3.4 <5"
  3991. },
  3992. "require-dev": {
  3993. "mockery/mockery": "^1.0",
  3994. "nesbot/carbon": "^1.26.3",
  3995. "phpunit/phpunit": "^7.0"
  3996. },
  3997. "type": "library",
  3998. "autoload": {
  3999. "files": [
  4000. "src/Collect/Support/helpers.php",
  4001. "src/Collect/Support/alias.php"
  4002. ],
  4003. "psr-4": {
  4004. "Tightenco\\Collect\\": "src/Collect"
  4005. }
  4006. },
  4007. "notification-url": "https://packagist.org/downloads/",
  4008. "license": [
  4009. "MIT"
  4010. ],
  4011. "authors": [
  4012. {
  4013. "name": "Taylor Otwell",
  4014. "email": "taylorotwell@gmail.com"
  4015. }
  4016. ],
  4017. "description": "Collect - Illuminate Collections as a separate package.",
  4018. "keywords": [
  4019. "collection",
  4020. "laravel"
  4021. ],
  4022. "time": "2019-02-13T19:40:13+00:00"
  4023. },
  4024. {
  4025. "name": "webmozart/assert",
  4026. "version": "1.10.0",
  4027. "source": {
  4028. "type": "git",
  4029. "url": "https://github.com/webmozarts/assert.git",
  4030. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  4031. },
  4032. "dist": {
  4033. "type": "zip",
  4034. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  4035. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  4036. "shasum": ""
  4037. },
  4038. "require": {
  4039. "php": "^7.2 || ^8.0",
  4040. "symfony/polyfill-ctype": "^1.8"
  4041. },
  4042. "conflict": {
  4043. "phpstan/phpstan": "<0.12.20",
  4044. "vimeo/psalm": "<4.6.1 || 4.6.2"
  4045. },
  4046. "require-dev": {
  4047. "phpunit/phpunit": "^8.5.13"
  4048. },
  4049. "type": "library",
  4050. "extra": {
  4051. "branch-alias": {
  4052. "dev-master": "1.10-dev"
  4053. }
  4054. },
  4055. "autoload": {
  4056. "psr-4": {
  4057. "Webmozart\\Assert\\": "src/"
  4058. }
  4059. },
  4060. "notification-url": "https://packagist.org/downloads/",
  4061. "license": [
  4062. "MIT"
  4063. ],
  4064. "authors": [
  4065. {
  4066. "name": "Bernhard Schussek",
  4067. "email": "bschussek@gmail.com"
  4068. }
  4069. ],
  4070. "description": "Assertions to validate method input/output with nice error messages.",
  4071. "keywords": [
  4072. "assert",
  4073. "check",
  4074. "validate"
  4075. ],
  4076. "support": {
  4077. "issues": "https://github.com/webmozarts/assert/issues",
  4078. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  4079. },
  4080. "time": "2021-03-09T10:59:23+00:00"
  4081. },
  4082. {
  4083. "name": "zircote/swagger-php",
  4084. "version": "3.0.4",
  4085. "source": {
  4086. "type": "git",
  4087. "url": "https://github.com/zircote/swagger-php.git",
  4088. "reference": "fa47d62c22c95272625624fbf8109fa46ffac43b"
  4089. },
  4090. "dist": {
  4091. "type": "zip",
  4092. "url": "https://api.github.com/repos/zircote/swagger-php/zipball/fa47d62c22c95272625624fbf8109fa46ffac43b",
  4093. "reference": "fa47d62c22c95272625624fbf8109fa46ffac43b",
  4094. "shasum": ""
  4095. },
  4096. "require": {
  4097. "doctrine/annotations": "*",
  4098. "php": ">=7.2",
  4099. "symfony/finder": ">=2.2",
  4100. "symfony/yaml": ">=3.3"
  4101. },
  4102. "require-dev": {
  4103. "phpunit/phpunit": ">=8",
  4104. "squizlabs/php_codesniffer": ">=3.3",
  4105. "zendframework/zend-form": "<2.8"
  4106. },
  4107. "bin": [
  4108. "bin/openapi"
  4109. ],
  4110. "type": "library",
  4111. "autoload": {
  4112. "psr-4": {
  4113. "OpenApi\\": "src"
  4114. },
  4115. "files": [
  4116. "src/functions.php"
  4117. ]
  4118. },
  4119. "notification-url": "https://packagist.org/downloads/",
  4120. "license": [
  4121. "Apache-2.0"
  4122. ],
  4123. "authors": [
  4124. {
  4125. "name": "Robert Allen",
  4126. "email": "zircote@gmail.com",
  4127. "homepage": "http://www.zircote.com"
  4128. },
  4129. {
  4130. "name": "Bob Fanger",
  4131. "email": "bfanger@gmail.com",
  4132. "homepage": "http://bfanger.nl"
  4133. }
  4134. ],
  4135. "description": "swagger-php - Generate interactive documentation for your RESTful API using phpdoc annotations",
  4136. "homepage": "https://github.com/zircote/swagger-php/",
  4137. "keywords": [
  4138. "api",
  4139. "json",
  4140. "rest",
  4141. "service discovery"
  4142. ],
  4143. "time": "2020-05-07T09:10:49+00:00"
  4144. }
  4145. ],
  4146. "packages-dev": [],
  4147. "aliases": [],
  4148. "minimum-stability": "stable",
  4149. "stability-flags": [],
  4150. "prefer-stable": false,
  4151. "prefer-lowest": false,
  4152. "platform": [],
  4153. "platform-dev": [],
  4154. "plugin-api-version": "2.3.0"
  4155. }