installed.json 136 KB

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