composer.lock 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "80ecf8f463dbfc0e3c7dc432ab657e42",
  8. "packages": [
  9. {
  10. "name": "clue/stream-filter",
  11. "version": "v1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/clue/php-stream-filter.git",
  15. "reference": "e3bf9415da163d9ad6701dccb407ed501ae69785"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/clue/php-stream-filter/zipball/e3bf9415da163d9ad6701dccb407ed501ae69785",
  20. "reference": "e3bf9415da163d9ad6701dccb407ed501ae69785",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "Clue\\StreamFilter\\": "src/"
  30. },
  31. "files": [
  32. "src/functions.php"
  33. ]
  34. },
  35. "notification-url": "https://packagist.org/downloads/",
  36. "license": [
  37. "MIT"
  38. ],
  39. "authors": [
  40. {
  41. "name": "Christian Lück",
  42. "email": "christian@lueck.tv"
  43. }
  44. ],
  45. "description": "A simple and modern approach to stream filtering in PHP",
  46. "homepage": "https://github.com/clue/php-stream-filter",
  47. "keywords": [
  48. "bucket brigade",
  49. "callback",
  50. "filter",
  51. "php_user_filter",
  52. "stream",
  53. "stream_filter_append",
  54. "stream_filter_register"
  55. ],
  56. "time": "2015-11-08T23:41:30+00:00"
  57. },
  58. {
  59. "name": "docker-php/docker-php",
  60. "version": "1.24.0",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/docker-php/docker-php.git",
  64. "reference": "27b04e15810e3ed688d5e87b75a4eb6716f0bda0"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/docker-php/docker-php/zipball/27b04e15810e3ed688d5e87b75a4eb6716f0bda0",
  69. "reference": "27b04e15810e3ed688d5e87b75a4eb6716f0bda0",
  70. "shasum": ""
  71. },
  72. "require": {
  73. "guzzlehttp/psr7": "^1.2",
  74. "jane/open-api": "^1.0",
  75. "php": ">=5.4",
  76. "php-http/client-common": "^1.1",
  77. "php-http/message": "^1.0",
  78. "php-http/socket-client": "^1.0",
  79. "symfony/filesystem": "^2.3 || ^3.0",
  80. "symfony/process": "^2.3 || ^3.0"
  81. },
  82. "require-dev": {
  83. "friendsofphp/php-cs-fixer": "^2.0",
  84. "phpunit/phpunit": "^4.7"
  85. },
  86. "type": "library",
  87. "extra": {
  88. "branch-alias": {
  89. "dev-master": "1.24-dev"
  90. }
  91. },
  92. "autoload": {
  93. "psr-4": {
  94. "Docker\\": "src/",
  95. "Docker\\API\\": "generated/"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "MIT"
  101. ],
  102. "description": "A Docker PHP client",
  103. "time": "2016-08-08T10:39:27+00:00"
  104. },
  105. {
  106. "name": "doctrine/annotations",
  107. "version": "v1.0",
  108. "source": {
  109. "type": "git",
  110. "url": "https://github.com/doctrine/annotations.git",
  111. "reference": "fae359b3efd908e407a0105ff8956b5c94ddca8e"
  112. },
  113. "dist": {
  114. "type": "zip",
  115. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fae359b3efd908e407a0105ff8956b5c94ddca8e",
  116. "reference": "fae359b3efd908e407a0105ff8956b5c94ddca8e",
  117. "shasum": ""
  118. },
  119. "require": {
  120. "doctrine/lexer": "1.*",
  121. "php": ">=5.3.2"
  122. },
  123. "require-dev": {
  124. "doctrine/cache": "1.*"
  125. },
  126. "type": "library",
  127. "autoload": {
  128. "psr-0": {
  129. "Doctrine\\Common\\Annotations\\": "lib/"
  130. }
  131. },
  132. "notification-url": "https://packagist.org/downloads/",
  133. "license": [
  134. "MIT"
  135. ],
  136. "authors": [
  137. {
  138. "name": "Jonathan Wage",
  139. "email": "jonwage@gmail.com",
  140. "homepage": "http://www.jwage.com/",
  141. "role": "Creator"
  142. },
  143. {
  144. "name": "Guilherme Blanco",
  145. "email": "guilhermeblanco@gmail.com",
  146. "homepage": "http://www.instaclick.com"
  147. },
  148. {
  149. "name": "Roman Borschel",
  150. "email": "roman@code-factory.org"
  151. },
  152. {
  153. "name": "Benjamin Eberlei",
  154. "email": "kontakt@beberlei.de"
  155. },
  156. {
  157. "name": "Johannes Schmitt",
  158. "email": "schmittjoh@gmail.com",
  159. "homepage": "https://github.com/schmittjoh",
  160. "role": "Developer of wrapped JMSSerializerBundle"
  161. }
  162. ],
  163. "description": "Docblock Annotations Parser",
  164. "homepage": "http://www.doctrine-project.org",
  165. "keywords": [
  166. "annotations",
  167. "docblock",
  168. "parser"
  169. ],
  170. "time": "2013-01-12T19:23:32+00:00"
  171. },
  172. {
  173. "name": "doctrine/cache",
  174. "version": "v1.0",
  175. "source": {
  176. "type": "git",
  177. "url": "https://github.com/doctrine/cache.git",
  178. "reference": "914abe4a49f2eae2b268073cca147b530da0308a"
  179. },
  180. "dist": {
  181. "type": "zip",
  182. "url": "https://api.github.com/repos/doctrine/cache/zipball/914abe4a49f2eae2b268073cca147b530da0308a",
  183. "reference": "914abe4a49f2eae2b268073cca147b530da0308a",
  184. "shasum": ""
  185. },
  186. "require": {
  187. "php": ">=5.3.2"
  188. },
  189. "type": "library",
  190. "autoload": {
  191. "psr-0": {
  192. "Doctrine\\Common\\Cache\\": "lib/"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "MIT"
  198. ],
  199. "authors": [
  200. {
  201. "name": "Jonathan Wage",
  202. "email": "jonwage@gmail.com",
  203. "homepage": "http://www.jwage.com/",
  204. "role": "Creator"
  205. },
  206. {
  207. "name": "Guilherme Blanco",
  208. "email": "guilhermeblanco@gmail.com",
  209. "homepage": "http://www.instaclick.com"
  210. },
  211. {
  212. "name": "Roman Borschel",
  213. "email": "roman@code-factory.org"
  214. },
  215. {
  216. "name": "Benjamin Eberlei",
  217. "email": "kontakt@beberlei.de"
  218. },
  219. {
  220. "name": "Johannes Schmitt",
  221. "email": "schmittjoh@gmail.com",
  222. "homepage": "https://github.com/schmittjoh",
  223. "role": "Developer of wrapped JMSSerializerBundle"
  224. }
  225. ],
  226. "description": "Caching library offering an object-oriented API for many cache backends",
  227. "homepage": "http://www.doctrine-project.org",
  228. "keywords": [
  229. "cache",
  230. "caching"
  231. ],
  232. "time": "2013-01-10T22:43:46+00:00"
  233. },
  234. {
  235. "name": "doctrine/inflector",
  236. "version": "v1.0",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/doctrine/inflector.git",
  240. "reference": "54b8333d2a5682afdc690060c1cf384ba9f47f08"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/doctrine/inflector/zipball/54b8333d2a5682afdc690060c1cf384ba9f47f08",
  245. "reference": "54b8333d2a5682afdc690060c1cf384ba9f47f08",
  246. "shasum": ""
  247. },
  248. "require": {
  249. "php": ">=5.3.2"
  250. },
  251. "type": "library",
  252. "autoload": {
  253. "psr-0": {
  254. "Doctrine\\Common\\Inflector\\": "lib/"
  255. }
  256. },
  257. "notification-url": "https://packagist.org/downloads/",
  258. "license": [
  259. "MIT"
  260. ],
  261. "authors": [
  262. {
  263. "name": "Jonathan Wage",
  264. "email": "jonwage@gmail.com",
  265. "homepage": "http://www.jwage.com/",
  266. "role": "Creator"
  267. },
  268. {
  269. "name": "Guilherme Blanco",
  270. "email": "guilhermeblanco@gmail.com",
  271. "homepage": "http://www.instaclick.com"
  272. },
  273. {
  274. "name": "Roman Borschel",
  275. "email": "roman@code-factory.org"
  276. },
  277. {
  278. "name": "Benjamin Eberlei",
  279. "email": "kontakt@beberlei.de"
  280. },
  281. {
  282. "name": "Johannes Schmitt",
  283. "email": "schmittjoh@gmail.com",
  284. "homepage": "https://github.com/schmittjoh",
  285. "role": "Developer of wrapped JMSSerializerBundle"
  286. }
  287. ],
  288. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  289. "homepage": "http://www.doctrine-project.org",
  290. "keywords": [
  291. "inflection",
  292. "pluarlize",
  293. "singuarlize",
  294. "string"
  295. ],
  296. "time": "2013-01-10T21:49:15+00:00"
  297. },
  298. {
  299. "name": "doctrine/lexer",
  300. "version": "v1.0",
  301. "source": {
  302. "type": "git",
  303. "url": "https://github.com/doctrine/lexer.git",
  304. "reference": "2f708a85bb3aab5d99dab8be435abd73e0b18acb"
  305. },
  306. "dist": {
  307. "type": "zip",
  308. "url": "https://api.github.com/repos/doctrine/lexer/zipball/2f708a85bb3aab5d99dab8be435abd73e0b18acb",
  309. "reference": "2f708a85bb3aab5d99dab8be435abd73e0b18acb",
  310. "shasum": ""
  311. },
  312. "require": {
  313. "php": ">=5.3.2"
  314. },
  315. "type": "library",
  316. "autoload": {
  317. "psr-0": {
  318. "Doctrine\\Common\\Lexer\\": "lib/"
  319. }
  320. },
  321. "notification-url": "https://packagist.org/downloads/",
  322. "license": [
  323. "MIT"
  324. ],
  325. "authors": [
  326. {
  327. "name": "Guilherme Blanco",
  328. "email": "guilhermeblanco@gmail.com",
  329. "homepage": "http://www.instaclick.com"
  330. },
  331. {
  332. "name": "Roman Borschel",
  333. "email": "roman@code-factory.org"
  334. },
  335. {
  336. "name": "Johannes Schmitt",
  337. "email": "schmittjoh@gmail.com",
  338. "homepage": "https://github.com/schmittjoh",
  339. "role": "Developer of wrapped JMSSerializerBundle"
  340. }
  341. ],
  342. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  343. "homepage": "http://www.doctrine-project.org",
  344. "keywords": [
  345. "lexer",
  346. "parser"
  347. ],
  348. "time": "2013-01-12T18:59:04+00:00"
  349. },
  350. {
  351. "name": "guzzlehttp/guzzle",
  352. "version": "6.0.0",
  353. "source": {
  354. "type": "git",
  355. "url": "https://github.com/guzzle/guzzle.git",
  356. "reference": "df897ae757ad329d2affc38ffb5bbce782b2b510"
  357. },
  358. "dist": {
  359. "type": "zip",
  360. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/df897ae757ad329d2affc38ffb5bbce782b2b510",
  361. "reference": "df897ae757ad329d2affc38ffb5bbce782b2b510",
  362. "shasum": ""
  363. },
  364. "require": {
  365. "guzzlehttp/promises": "^1.0.0",
  366. "guzzlehttp/psr7": "^1.0.0",
  367. "php": ">=5.5.0"
  368. },
  369. "require-dev": {
  370. "ext-curl": "*",
  371. "phpunit/phpunit": "^4.0",
  372. "psr/log": "^1.0"
  373. },
  374. "type": "library",
  375. "extra": {
  376. "branch-alias": {
  377. "dev-master": "6.0-dev"
  378. }
  379. },
  380. "autoload": {
  381. "files": [
  382. "src/functions.php"
  383. ],
  384. "psr-4": {
  385. "GuzzleHttp\\": "src/"
  386. }
  387. },
  388. "notification-url": "https://packagist.org/downloads/",
  389. "license": [
  390. "MIT"
  391. ],
  392. "authors": [
  393. {
  394. "name": "Michael Dowling",
  395. "email": "mtdowling@gmail.com",
  396. "homepage": "https://github.com/mtdowling"
  397. }
  398. ],
  399. "description": "Guzzle is a PHP HTTP client library",
  400. "homepage": "http://guzzlephp.org/",
  401. "keywords": [
  402. "client",
  403. "curl",
  404. "framework",
  405. "http",
  406. "http client",
  407. "rest",
  408. "web service"
  409. ],
  410. "time": "2015-05-26T18:22:06+00:00"
  411. },
  412. {
  413. "name": "guzzlehttp/promises",
  414. "version": "1.0.0",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/guzzle/promises.git",
  418. "reference": "01abc3232138f330d8a1eaa808fcbdf9b4292f47"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/guzzle/promises/zipball/01abc3232138f330d8a1eaa808fcbdf9b4292f47",
  423. "reference": "01abc3232138f330d8a1eaa808fcbdf9b4292f47",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "php": ">=5.5.0"
  428. },
  429. "require-dev": {
  430. "phpunit/phpunit": "^4.0"
  431. },
  432. "type": "library",
  433. "extra": {
  434. "branch-alias": {
  435. "dev-master": "1.0-dev"
  436. }
  437. },
  438. "autoload": {
  439. "psr-4": {
  440. "GuzzleHttp\\Promise\\": "src/"
  441. },
  442. "files": [
  443. "src/functions.php"
  444. ]
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Michael Dowling",
  453. "email": "mtdowling@gmail.com",
  454. "homepage": "https://github.com/mtdowling"
  455. }
  456. ],
  457. "description": "Guzzle promises library",
  458. "keywords": [
  459. "promise"
  460. ],
  461. "time": "2015-05-13T05:05:10+00:00"
  462. },
  463. {
  464. "name": "guzzlehttp/psr7",
  465. "version": "1.2.0",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/guzzle/psr7.git",
  469. "reference": "4ef919b0cf3b1989523138b60163bbcb7ba1ff7e"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/guzzle/psr7/zipball/4ef919b0cf3b1989523138b60163bbcb7ba1ff7e",
  474. "reference": "4ef919b0cf3b1989523138b60163bbcb7ba1ff7e",
  475. "shasum": ""
  476. },
  477. "require": {
  478. "php": ">=5.4.0",
  479. "psr/http-message": "~1.0"
  480. },
  481. "provide": {
  482. "psr/http-message-implementation": "1.0"
  483. },
  484. "require-dev": {
  485. "phpunit/phpunit": "~4.0"
  486. },
  487. "type": "library",
  488. "extra": {
  489. "branch-alias": {
  490. "dev-master": "1.0-dev"
  491. }
  492. },
  493. "autoload": {
  494. "psr-4": {
  495. "GuzzleHttp\\Psr7\\": "src/"
  496. },
  497. "files": [
  498. "src/functions_include.php"
  499. ]
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "MIT"
  504. ],
  505. "authors": [
  506. {
  507. "name": "Michael Dowling",
  508. "email": "mtdowling@gmail.com",
  509. "homepage": "https://github.com/mtdowling"
  510. }
  511. ],
  512. "description": "PSR-7 message implementation",
  513. "keywords": [
  514. "http",
  515. "message",
  516. "stream",
  517. "uri"
  518. ],
  519. "time": "2015-08-15T19:32:36+00:00"
  520. },
  521. {
  522. "name": "hwi/oauth-bundle",
  523. "version": "0.5.3",
  524. "source": {
  525. "type": "git",
  526. "url": "https://github.com/hwi/HWIOAuthBundle.git",
  527. "reference": "50f4bcbe5c217cfdf0f7f40a174b87199b76d1e1"
  528. },
  529. "dist": {
  530. "type": "zip",
  531. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/50f4bcbe5c217cfdf0f7f40a174b87199b76d1e1",
  532. "reference": "50f4bcbe5c217cfdf0f7f40a174b87199b76d1e1",
  533. "shasum": ""
  534. },
  535. "require": {
  536. "kriswallsmith/buzz": "~0.13",
  537. "php": "^5.3.3|^7.0",
  538. "symfony/form": "^2.3|^3.0",
  539. "symfony/framework-bundle": "^2.3|^3.0",
  540. "symfony/options-resolver": "^2.3|^3.0",
  541. "symfony/security-bundle": "^2.3|^3.0",
  542. "symfony/templating": "^2.7|^3.0",
  543. "symfony/yaml": "^2.3|^3.0"
  544. },
  545. "conflict": {
  546. "twig/twig": "<1.12"
  547. },
  548. "require-dev": {
  549. "doctrine/orm": "^2.3",
  550. "friendsofphp/php-cs-fixer": "^2.0",
  551. "friendsofsymfony/user-bundle": "^1.3|^2.0",
  552. "phpunit/phpunit": "^4.8|^5.0",
  553. "symfony/phpunit-bridge": "^2.7|^3.0",
  554. "symfony/property-access": "^2.3|^3.0",
  555. "symfony/stopwatch": "^2.5|^3.0",
  556. "symfony/twig-bundle": "^2.3|^3.0",
  557. "symfony/validator": "^2.3|^3.0"
  558. },
  559. "suggest": {
  560. "doctrine/doctrine-bundle": "to use Doctrine user provider",
  561. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  562. "symfony/property-access": "to use FOSUB integration with this bundle",
  563. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
  564. },
  565. "type": "symfony-bundle",
  566. "extra": {
  567. "branch-alias": {
  568. "dev-master": "0.5-dev"
  569. }
  570. },
  571. "autoload": {
  572. "psr-4": {
  573. "HWI\\Bundle\\OAuthBundle\\": ""
  574. },
  575. "exclude-from-classmap": [
  576. "/Tests/"
  577. ]
  578. },
  579. "notification-url": "https://packagist.org/downloads/",
  580. "license": [
  581. "MIT"
  582. ],
  583. "authors": [
  584. {
  585. "name": "Contributors",
  586. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  587. },
  588. {
  589. "name": "Joseph Bielawski",
  590. "email": "stloyd@gmail.com"
  591. },
  592. {
  593. "name": "Alexander",
  594. "email": "iam.asm89@gmail.com"
  595. },
  596. {
  597. "name": "Geoffrey Bachelet",
  598. "email": "geoffrey.bachelet@gmail.com"
  599. }
  600. ],
  601. "description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
  602. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  603. "keywords": [
  604. "37signals",
  605. "Authentication",
  606. "Deezer",
  607. "EVE Online",
  608. "amazon",
  609. "asana",
  610. "auth0",
  611. "azure",
  612. "bitbucket",
  613. "bitly",
  614. "box",
  615. "bufferapp",
  616. "clever",
  617. "dailymotion",
  618. "deviantart",
  619. "discogs",
  620. "disqus",
  621. "dropbox",
  622. "eventbrite",
  623. "facebook",
  624. "firewall",
  625. "fiware",
  626. "flickr",
  627. "foursquare",
  628. "github",
  629. "google",
  630. "hubic",
  631. "instagram",
  632. "jawbone",
  633. "jira",
  634. "linkedin",
  635. "mail.ru",
  636. "oauth",
  637. "oauth1",
  638. "oauth2",
  639. "odnoklassniki",
  640. "paypal",
  641. "qq",
  642. "reddit",
  643. "runkeeper",
  644. "salesforce",
  645. "security",
  646. "sensio connect",
  647. "sina weibo",
  648. "slack",
  649. "sound cloud",
  650. "spotify",
  651. "stack exchange",
  652. "stereomood",
  653. "strava",
  654. "toshl",
  655. "trakt",
  656. "trello",
  657. "twitch",
  658. "twitter",
  659. "vkontakte",
  660. "wechat",
  661. "windows live",
  662. "wordpress",
  663. "wunderlist",
  664. "xing",
  665. "yahoo",
  666. "yandex",
  667. "youtube"
  668. ],
  669. "time": "2017-01-08T14:13:58+00:00"
  670. },
  671. {
  672. "name": "ik/php-docker-lib",
  673. "version": "dev-master",
  674. "source": {
  675. "type": "git",
  676. "url": "ssh://git@infra.flowdat.com:222/VendorSoftwareFlowdat3/php-docker-lib.git",
  677. "reference": "dec0418094fbf0c2a37766542b291cf5b4a54c3c"
  678. },
  679. "require": {
  680. "symfony/yaml": "^3.3"
  681. },
  682. "require-dev": {
  683. "phpunit/phpunit": "^6.2"
  684. },
  685. "type": "library",
  686. "autoload": {
  687. "psr-4": {
  688. "Docker\\": "src/Docker/"
  689. }
  690. },
  691. "authors": [
  692. {
  693. "name": "Interlink",
  694. "email": "info@interlink.com.ar"
  695. }
  696. ],
  697. "time": "2019-02-26T15:47:41+00:00"
  698. },
  699. {
  700. "name": "jane/jane",
  701. "version": "v1.1.0",
  702. "source": {
  703. "type": "git",
  704. "url": "https://github.com/janephp/jane.git",
  705. "reference": "27baba6b616d8b842a73b2365812c9f9081d8ef0"
  706. },
  707. "dist": {
  708. "type": "zip",
  709. "url": "https://api.github.com/repos/janephp/jane/zipball/27baba6b616d8b842a73b2365812c9f9081d8ef0",
  710. "reference": "27baba6b616d8b842a73b2365812c9f9081d8ef0",
  711. "shasum": ""
  712. },
  713. "require": {
  714. "doctrine/inflector": "^1.0",
  715. "nikic/php-parser": "^1.4",
  716. "symfony/console": "^2.3|^3.0",
  717. "symfony/property-access": "^2.3|^3.0",
  718. "symfony/serializer": "^2.3|^3.0",
  719. "symfony/yaml": "^2.3|^3.0"
  720. },
  721. "conflict": {
  722. "fabpot/php-cs-fixer": "<2.0"
  723. },
  724. "require-dev": {
  725. "fabpot/php-cs-fixer": "^2.0@dev",
  726. "phpunit/phpunit": "^5.0"
  727. },
  728. "suggest": {
  729. "fabpot/php-cs-fixer": "Allow to automatically fix cs on generated code for better visualisation"
  730. },
  731. "bin": [
  732. "bin/jane"
  733. ],
  734. "type": "library",
  735. "extra": {
  736. "branch-alias": {
  737. "dev-master": "1.0-dev"
  738. }
  739. },
  740. "autoload": {
  741. "psr-4": {
  742. "Joli\\Jane\\": "src/"
  743. }
  744. },
  745. "notification-url": "https://packagist.org/downloads/",
  746. "license": [
  747. "MIT"
  748. ],
  749. "authors": [
  750. {
  751. "name": "Joel Wurtz",
  752. "email": "jwurtz@jolicode.com"
  753. }
  754. ],
  755. "description": "Generate a serializable / deserializable object model given a json schema",
  756. "abandoned": "jane-php/json-schema",
  757. "time": "2016-01-26T19:31:12+00:00"
  758. },
  759. {
  760. "name": "jane/open-api",
  761. "version": "v1.0.0",
  762. "source": {
  763. "type": "git",
  764. "url": "https://github.com/janephp/openapi.git",
  765. "reference": "7a99364280c320c4db6315350bd0c8015f7ed7ce"
  766. },
  767. "dist": {
  768. "type": "zip",
  769. "url": "https://api.github.com/repos/janephp/openapi/zipball/7a99364280c320c4db6315350bd0c8015f7ed7ce",
  770. "reference": "7a99364280c320c4db6315350bd0c8015f7ed7ce",
  771. "shasum": ""
  772. },
  773. "require": {
  774. "doctrine/inflector": "^1.0",
  775. "jane/jane": "^1.1.0",
  776. "nikic/php-parser": "^1.4",
  777. "php-http/httplug": "^1.0",
  778. "php-http/message-factory": "^1.0",
  779. "symfony/console": "^2.3|^3.0",
  780. "symfony/options-resolver": "^2.7|^3.0"
  781. },
  782. "conflict": {
  783. "fabpot/php-cs-fixer": "<2.0"
  784. },
  785. "require-dev": {
  786. "fabpot/php-cs-fixer": "^2.0@dev",
  787. "phpunit/phpunit": "^4.7"
  788. },
  789. "suggest": {
  790. "fabpot/php-cs-fixer": "To have a nice formatting of the generated files"
  791. },
  792. "bin": [
  793. "bin/jane-openapi"
  794. ],
  795. "type": "library",
  796. "extra": {
  797. "branch-alias": {
  798. "dev-master": "1-dev"
  799. }
  800. },
  801. "autoload": {
  802. "psr-4": {
  803. "Joli\\Jane\\OpenApi\\Model\\": "generated/Model/",
  804. "Joli\\Jane\\OpenApi\\Normalizer\\": "generated/Normalizer/",
  805. "Joli\\Jane\\OpenApi\\": "src/"
  806. }
  807. },
  808. "notification-url": "https://packagist.org/downloads/",
  809. "license": [
  810. "MIT"
  811. ],
  812. "authors": [
  813. {
  814. "name": "Joel Wurtz",
  815. "email": "jwurtz@jolicode.com"
  816. }
  817. ],
  818. "description": "Generate a PHP Client API (PSR7 compatible) given a OpenApi (Swagger) specification",
  819. "keywords": [
  820. "jane",
  821. "openapi",
  822. "swagger"
  823. ],
  824. "abandoned": "jane-php/open-api",
  825. "time": "2016-01-26T21:52:46+00:00"
  826. },
  827. {
  828. "name": "kriswallsmith/buzz",
  829. "version": "v0.13",
  830. "source": {
  831. "type": "git",
  832. "url": "https://github.com/kriswallsmith/Buzz.git",
  833. "reference": "487760b05d6269a4c2c374364325326cfa65b12c"
  834. },
  835. "dist": {
  836. "type": "zip",
  837. "url": "https://api.github.com/repos/kriswallsmith/Buzz/zipball/487760b05d6269a4c2c374364325326cfa65b12c",
  838. "reference": "487760b05d6269a4c2c374364325326cfa65b12c",
  839. "shasum": ""
  840. },
  841. "require": {
  842. "php": ">=5.3.0"
  843. },
  844. "require-dev": {
  845. "phpunit/phpunit": "3.7.*"
  846. },
  847. "suggest": {
  848. "ext-curl": "*"
  849. },
  850. "type": "library",
  851. "autoload": {
  852. "psr-0": {
  853. "Buzz": "lib/"
  854. }
  855. },
  856. "notification-url": "https://packagist.org/downloads/",
  857. "license": [
  858. "MIT"
  859. ],
  860. "authors": [
  861. {
  862. "name": "Kris Wallsmith",
  863. "email": "kris.wallsmith@gmail.com",
  864. "homepage": "http://kriswallsmith.net/"
  865. }
  866. ],
  867. "description": "Lightweight HTTP client",
  868. "homepage": "https://github.com/kriswallsmith/Buzz",
  869. "keywords": [
  870. "curl",
  871. "http client"
  872. ],
  873. "time": "2014-09-15T12:42:36+00:00"
  874. },
  875. {
  876. "name": "kzykhys/git",
  877. "version": "v0.1.2",
  878. "source": {
  879. "type": "git",
  880. "url": "https://github.com/kzykhys/PHPGit.git",
  881. "reference": "3c4db987494c38eac300593719a4a7832abddadd"
  882. },
  883. "dist": {
  884. "type": "zip",
  885. "url": "https://api.github.com/repos/kzykhys/PHPGit/zipball/3c4db987494c38eac300593719a4a7832abddadd",
  886. "reference": "3c4db987494c38eac300593719a4a7832abddadd",
  887. "shasum": ""
  888. },
  889. "require": {
  890. "php": ">=5.3.2",
  891. "symfony/options-resolver": ">=2.3",
  892. "symfony/process": ">=2.3"
  893. },
  894. "require-dev": {
  895. "symfony/filesystem": ">=2.3"
  896. },
  897. "type": "library",
  898. "extra": {
  899. "branch-alias": {
  900. "dev-master": "1.0.x-dev"
  901. }
  902. },
  903. "autoload": {
  904. "psr-0": {
  905. "": "src"
  906. }
  907. },
  908. "notification-url": "https://packagist.org/downloads/",
  909. "license": [
  910. "MIT"
  911. ],
  912. "authors": [
  913. {
  914. "name": "Kazuyuki Hayashi",
  915. "email": "hayashi@valnur.net"
  916. }
  917. ],
  918. "description": "A Git wrapper for PHP5.3+",
  919. "time": "2014-02-15T06:18:00+00:00"
  920. },
  921. {
  922. "name": "magicalex/write-ini-file",
  923. "version": "v1.2.0",
  924. "source": {
  925. "type": "git",
  926. "url": "https://github.com/Magicalex/WriteiniFile.git",
  927. "reference": "b05365225769ffbab3916a0fc7bb87a929ff7497"
  928. },
  929. "dist": {
  930. "type": "zip",
  931. "url": "https://api.github.com/repos/Magicalex/WriteiniFile/zipball/b05365225769ffbab3916a0fc7bb87a929ff7497",
  932. "reference": "b05365225769ffbab3916a0fc7bb87a929ff7497",
  933. "shasum": ""
  934. },
  935. "require": {
  936. "php": ">=5.6.0"
  937. },
  938. "require-dev": {
  939. "phpunit/phpunit": "5.3.4",
  940. "satooshi/php-coveralls": "1.0.1"
  941. },
  942. "type": "library",
  943. "autoload": {
  944. "psr-4": {
  945. "WriteiniFile\\": "src"
  946. }
  947. },
  948. "notification-url": "https://packagist.org/downloads/",
  949. "license": [
  950. "GPL-3.0"
  951. ],
  952. "authors": [
  953. {
  954. "name": "magicalex",
  955. "email": "magicalex14000@gmail.com"
  956. }
  957. ],
  958. "description": "Write-ini-file php library for create, remove, erase, add, and update ini file",
  959. "homepage": "https://github.com/Magicalex/WriteIniFile",
  960. "keywords": [
  961. "file",
  962. "ini",
  963. "write",
  964. "write_ini_file"
  965. ],
  966. "time": "2016-05-17T20:57:58+00:00"
  967. },
  968. {
  969. "name": "maxakawizard/json-collection-parser",
  970. "version": "1.1.0",
  971. "source": {
  972. "type": "git",
  973. "url": "https://github.com/MAXakaWIZARD/JsonCollectionParser.git",
  974. "reference": "5ab614d8dd6e6639fdf77ba716d5591f7a9a598c"
  975. },
  976. "dist": {
  977. "type": "zip",
  978. "url": "https://api.github.com/repos/MAXakaWIZARD/JsonCollectionParser/zipball/5ab614d8dd6e6639fdf77ba716d5591f7a9a598c",
  979. "reference": "5ab614d8dd6e6639fdf77ba716d5591f7a9a598c",
  980. "shasum": ""
  981. },
  982. "require": {
  983. "php": "^5.4 | ^7.0",
  984. "salsify/json-streaming-parser": "~6.0"
  985. },
  986. "require-dev": {
  987. "phpunit/phpunit": "~4.0 | ~5.0",
  988. "satooshi/php-coveralls": "~1.0"
  989. },
  990. "type": "library",
  991. "autoload": {
  992. "psr-4": {
  993. "JsonCollectionParser\\": "src/",
  994. "JsonCollectionParser\\Tests\\": "tests/"
  995. }
  996. },
  997. "notification-url": "https://packagist.org/downloads/",
  998. "license": [
  999. "MIT"
  1000. ],
  1001. "authors": [
  1002. {
  1003. "name": "Max Grigorian",
  1004. "email": "maxakawizard@gmail.com"
  1005. }
  1006. ],
  1007. "description": "Streaming parser for large JSON files containing array of objects",
  1008. "homepage": "https://github.com/MAXakaWIZARD/JsonCollectionParser",
  1009. "keywords": [
  1010. "json"
  1011. ],
  1012. "time": "2016-05-10T12:22:00+00:00"
  1013. },
  1014. {
  1015. "name": "nikic/php-parser",
  1016. "version": "v1.4.0",
  1017. "source": {
  1018. "type": "git",
  1019. "url": "https://github.com/nikic/PHP-Parser.git",
  1020. "reference": "196f177cfefa0f1f7166c0a05d8255889be12418"
  1021. },
  1022. "dist": {
  1023. "type": "zip",
  1024. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/196f177cfefa0f1f7166c0a05d8255889be12418",
  1025. "reference": "196f177cfefa0f1f7166c0a05d8255889be12418",
  1026. "shasum": ""
  1027. },
  1028. "require": {
  1029. "ext-tokenizer": "*",
  1030. "php": ">=5.3"
  1031. },
  1032. "type": "library",
  1033. "extra": {
  1034. "branch-alias": {
  1035. "dev-master": "1.4-dev"
  1036. }
  1037. },
  1038. "autoload": {
  1039. "files": [
  1040. "lib/bootstrap.php"
  1041. ]
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "BSD-3-Clause"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Nikita Popov"
  1050. }
  1051. ],
  1052. "description": "A PHP parser written in PHP",
  1053. "keywords": [
  1054. "parser",
  1055. "php"
  1056. ],
  1057. "time": "2015-07-14T17:31:05+00:00"
  1058. },
  1059. {
  1060. "name": "paragonie/random_compat",
  1061. "version": "v1.0.0",
  1062. "source": {
  1063. "type": "git",
  1064. "url": "https://github.com/paragonie/random_compat.git",
  1065. "reference": "a1d9f267eb8b8ad560e54e397a5ed1e3b78097d1"
  1066. },
  1067. "dist": {
  1068. "type": "zip",
  1069. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/a1d9f267eb8b8ad560e54e397a5ed1e3b78097d1",
  1070. "reference": "a1d9f267eb8b8ad560e54e397a5ed1e3b78097d1",
  1071. "shasum": ""
  1072. },
  1073. "require": {
  1074. "php": ">=5.2.0"
  1075. },
  1076. "type": "library",
  1077. "autoload": {
  1078. "files": [
  1079. "lib/random.php"
  1080. ]
  1081. },
  1082. "notification-url": "https://packagist.org/downloads/",
  1083. "license": [
  1084. "MIT"
  1085. ],
  1086. "authors": [
  1087. {
  1088. "name": "Paragon Initiative Enterprises",
  1089. "email": "security@paragonie.com",
  1090. "homepage": "https://paragonie.com"
  1091. }
  1092. ],
  1093. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1094. "keywords": [
  1095. "csprng",
  1096. "pseudorandom",
  1097. "random"
  1098. ],
  1099. "time": "2015-09-07T01:49:23+00:00"
  1100. },
  1101. {
  1102. "name": "php-http/client-common",
  1103. "version": "v1.1.0",
  1104. "source": {
  1105. "type": "git",
  1106. "url": "https://github.com/php-http/client-common.git",
  1107. "reference": "1c09aab88fec3eca280e9e9f486ab524285412a0"
  1108. },
  1109. "dist": {
  1110. "type": "zip",
  1111. "url": "https://api.github.com/repos/php-http/client-common/zipball/1c09aab88fec3eca280e9e9f486ab524285412a0",
  1112. "reference": "1c09aab88fec3eca280e9e9f486ab524285412a0",
  1113. "shasum": ""
  1114. },
  1115. "require": {
  1116. "php": ">=5.4",
  1117. "php-http/httplug": "^1.0",
  1118. "php-http/message": "^1.2",
  1119. "php-http/message-factory": "^1.0",
  1120. "symfony/options-resolver": "^2.6|^3.0"
  1121. },
  1122. "require-dev": {
  1123. "henrikbjorn/phpspec-code-coverage": "^1.0",
  1124. "phpspec/phpspec": "^2.4"
  1125. },
  1126. "type": "library",
  1127. "extra": {
  1128. "branch-alias": {
  1129. "dev-master": "1.2-dev"
  1130. }
  1131. },
  1132. "autoload": {
  1133. "psr-4": {
  1134. "Http\\Client\\Common\\": "src/"
  1135. }
  1136. },
  1137. "notification-url": "https://packagist.org/downloads/",
  1138. "license": [
  1139. "MIT"
  1140. ],
  1141. "authors": [
  1142. {
  1143. "name": "Márk Sági-Kazár",
  1144. "email": "mark.sagikazar@gmail.com"
  1145. }
  1146. ],
  1147. "description": "Common HTTP Client implementations and tools for HTTPlug",
  1148. "homepage": "http://httplug.io",
  1149. "keywords": [
  1150. "client",
  1151. "common",
  1152. "http",
  1153. "httplug"
  1154. ],
  1155. "time": "2016-05-04T06:04:52+00:00"
  1156. },
  1157. {
  1158. "name": "php-http/httplug",
  1159. "version": "v1.0.0",
  1160. "source": {
  1161. "type": "git",
  1162. "url": "https://github.com/php-http/httplug.git",
  1163. "reference": "2061047ca53a08a6b8f52e997b2a76f386b397dd"
  1164. },
  1165. "dist": {
  1166. "type": "zip",
  1167. "url": "https://api.github.com/repos/php-http/httplug/zipball/2061047ca53a08a6b8f52e997b2a76f386b397dd",
  1168. "reference": "2061047ca53a08a6b8f52e997b2a76f386b397dd",
  1169. "shasum": ""
  1170. },
  1171. "require": {
  1172. "php": ">=5.4",
  1173. "php-http/promise": "^1.0",
  1174. "psr/http-message": "^1.0"
  1175. },
  1176. "require-dev": {
  1177. "henrikbjorn/phpspec-code-coverage": "^1.0",
  1178. "phpspec/phpspec": "^2.4"
  1179. },
  1180. "type": "library",
  1181. "extra": {
  1182. "branch-alias": {
  1183. "dev-master": "1.1-dev"
  1184. }
  1185. },
  1186. "autoload": {
  1187. "psr-4": {
  1188. "Http\\Client\\": "src/"
  1189. }
  1190. },
  1191. "notification-url": "https://packagist.org/downloads/",
  1192. "license": [
  1193. "MIT"
  1194. ],
  1195. "authors": [
  1196. {
  1197. "name": "Eric GELOEN",
  1198. "email": "geloen.eric@gmail.com"
  1199. },
  1200. {
  1201. "name": "Márk Sági-Kazár",
  1202. "email": "mark.sagikazar@gmail.com"
  1203. }
  1204. ],
  1205. "description": "HTTPlug, the HTTP client abstraction for PHP",
  1206. "homepage": "http://httplug.io",
  1207. "keywords": [
  1208. "client",
  1209. "http"
  1210. ],
  1211. "time": "2016-01-26T14:34:50+00:00"
  1212. },
  1213. {
  1214. "name": "php-http/message",
  1215. "version": "v1.2.0",
  1216. "source": {
  1217. "type": "git",
  1218. "url": "https://github.com/php-http/message.git",
  1219. "reference": "c8fadec9533f5e34a8a730a947fa76363f3aa620"
  1220. },
  1221. "dist": {
  1222. "type": "zip",
  1223. "url": "https://api.github.com/repos/php-http/message/zipball/c8fadec9533f5e34a8a730a947fa76363f3aa620",
  1224. "reference": "c8fadec9533f5e34a8a730a947fa76363f3aa620",
  1225. "shasum": ""
  1226. },
  1227. "require": {
  1228. "clue/stream-filter": "^1.3",
  1229. "php": ">=5.4",
  1230. "php-http/message-factory": "^1.0.2",
  1231. "psr/http-message": "^1.0"
  1232. },
  1233. "require-dev": {
  1234. "coduo/phpspec-data-provider-extension": "^1.0",
  1235. "ext-zlib": "*",
  1236. "guzzlehttp/psr7": "^1.0",
  1237. "henrikbjorn/phpspec-code-coverage": "^1.0",
  1238. "phpspec/phpspec": "^2.4",
  1239. "zendframework/zend-diactoros": "^1.0"
  1240. },
  1241. "suggest": {
  1242. "ext-zlib": "Used with compressor/decompressor streams",
  1243. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  1244. "zendframework/zend-diactoros": "Used with Diactoros Factories"
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-master": "1.3-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "Http\\Message\\": "src/"
  1255. },
  1256. "files": [
  1257. "src/filters.php"
  1258. ]
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Márk Sági-Kazár",
  1267. "email": "mark.sagikazar@gmail.com"
  1268. }
  1269. ],
  1270. "description": "HTTP Message related tools",
  1271. "homepage": "http://php-http.org",
  1272. "keywords": [
  1273. "http",
  1274. "message",
  1275. "psr-7"
  1276. ],
  1277. "time": "2016-03-29T20:44:24+00:00"
  1278. },
  1279. {
  1280. "name": "php-http/message-factory",
  1281. "version": "v1.0.2",
  1282. "source": {
  1283. "type": "git",
  1284. "url": "https://github.com/php-http/message-factory.git",
  1285. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  1286. },
  1287. "dist": {
  1288. "type": "zip",
  1289. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1290. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1291. "shasum": ""
  1292. },
  1293. "require": {
  1294. "php": ">=5.4",
  1295. "psr/http-message": "^1.0"
  1296. },
  1297. "type": "library",
  1298. "extra": {
  1299. "branch-alias": {
  1300. "dev-master": "1.0-dev"
  1301. }
  1302. },
  1303. "autoload": {
  1304. "psr-4": {
  1305. "Http\\Message\\": "src/"
  1306. }
  1307. },
  1308. "notification-url": "https://packagist.org/downloads/",
  1309. "license": [
  1310. "MIT"
  1311. ],
  1312. "authors": [
  1313. {
  1314. "name": "Márk Sági-Kazár",
  1315. "email": "mark.sagikazar@gmail.com"
  1316. }
  1317. ],
  1318. "description": "Factory interfaces for PSR-7 HTTP Message",
  1319. "homepage": "http://php-http.org",
  1320. "keywords": [
  1321. "factory",
  1322. "http",
  1323. "message",
  1324. "stream",
  1325. "uri"
  1326. ],
  1327. "time": "2015-12-19T14:08:53+00:00"
  1328. },
  1329. {
  1330. "name": "php-http/promise",
  1331. "version": "v1.0.0",
  1332. "source": {
  1333. "type": "git",
  1334. "url": "https://github.com/php-http/promise.git",
  1335. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980"
  1336. },
  1337. "dist": {
  1338. "type": "zip",
  1339. "url": "https://api.github.com/repos/php-http/promise/zipball/dc494cdc9d7160b9a09bd5573272195242ce7980",
  1340. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980",
  1341. "shasum": ""
  1342. },
  1343. "require-dev": {
  1344. "henrikbjorn/phpspec-code-coverage": "^1.0",
  1345. "phpspec/phpspec": "^2.4"
  1346. },
  1347. "type": "library",
  1348. "extra": {
  1349. "branch-alias": {
  1350. "dev-master": "1.1-dev"
  1351. }
  1352. },
  1353. "autoload": {
  1354. "psr-4": {
  1355. "Http\\Promise\\": "src/"
  1356. }
  1357. },
  1358. "notification-url": "https://packagist.org/downloads/",
  1359. "license": [
  1360. "MIT"
  1361. ],
  1362. "authors": [
  1363. {
  1364. "name": "Márk Sági-Kazár",
  1365. "email": "mark.sagikazar@gmail.com"
  1366. },
  1367. {
  1368. "name": "Joel Wurtz",
  1369. "email": "joel.wurtz@gmail.com"
  1370. }
  1371. ],
  1372. "description": "Promise used for asynchronous HTTP requests",
  1373. "homepage": "http://httplug.io",
  1374. "keywords": [
  1375. "promise"
  1376. ],
  1377. "time": "2016-01-26T13:27:02+00:00"
  1378. },
  1379. {
  1380. "name": "php-http/socket-client",
  1381. "version": "v1.0.0",
  1382. "source": {
  1383. "type": "git",
  1384. "url": "https://github.com/php-http/socket-client.git",
  1385. "reference": "84cfa0bca447790ca2918c31b11e8316ba3e1d88"
  1386. },
  1387. "dist": {
  1388. "type": "zip",
  1389. "url": "https://api.github.com/repos/php-http/socket-client/zipball/84cfa0bca447790ca2918c31b11e8316ba3e1d88",
  1390. "reference": "84cfa0bca447790ca2918c31b11e8316ba3e1d88",
  1391. "shasum": ""
  1392. },
  1393. "require": {
  1394. "php": ">=5.4",
  1395. "php-http/httplug": "^1.0",
  1396. "php-http/message-factory": "^1.0.2",
  1397. "symfony/options-resolver": "^2.6|^3.0"
  1398. },
  1399. "provide": {
  1400. "php-http/client-implementation": "1.0"
  1401. },
  1402. "require-dev": {
  1403. "guzzlehttp/psr7": "^1.2",
  1404. "php-http/adapter-integration-tests": "dev-master",
  1405. "php-http/client-common": "0.2.0",
  1406. "php-http/discovery": "^0.8@dev",
  1407. "php-http/message": "^0.2@dev",
  1408. "phpunit/phpunit": "^4.8"
  1409. },
  1410. "suggest": {
  1411. "php-http/discovery": "Used for message factory discovery"
  1412. },
  1413. "type": "library",
  1414. "extra": {
  1415. "branch-alias": {
  1416. "dev-master": "0.2-dev"
  1417. }
  1418. },
  1419. "autoload": {
  1420. "psr-4": {
  1421. "Http\\Client\\Socket\\": "src/"
  1422. }
  1423. },
  1424. "notification-url": "https://packagist.org/downloads/",
  1425. "license": [
  1426. "MIT"
  1427. ],
  1428. "authors": [
  1429. {
  1430. "name": "Joel Wurtz",
  1431. "email": "jwurtz@jolicode.com"
  1432. }
  1433. ],
  1434. "description": "Socket client for PHP-HTTP",
  1435. "time": "2016-01-26T15:15:24+00:00"
  1436. },
  1437. {
  1438. "name": "psr/container",
  1439. "version": "1.0.0",
  1440. "source": {
  1441. "type": "git",
  1442. "url": "https://github.com/php-fig/container.git",
  1443. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1444. },
  1445. "dist": {
  1446. "type": "zip",
  1447. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1448. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1449. "shasum": ""
  1450. },
  1451. "require": {
  1452. "php": ">=5.3.0"
  1453. },
  1454. "type": "library",
  1455. "extra": {
  1456. "branch-alias": {
  1457. "dev-master": "1.0.x-dev"
  1458. }
  1459. },
  1460. "autoload": {
  1461. "psr-4": {
  1462. "Psr\\Container\\": "src/"
  1463. }
  1464. },
  1465. "notification-url": "https://packagist.org/downloads/",
  1466. "license": [
  1467. "MIT"
  1468. ],
  1469. "authors": [
  1470. {
  1471. "name": "PHP-FIG",
  1472. "homepage": "http://www.php-fig.org/"
  1473. }
  1474. ],
  1475. "description": "Common Container Interface (PHP FIG PSR-11)",
  1476. "homepage": "https://github.com/php-fig/container",
  1477. "keywords": [
  1478. "PSR-11",
  1479. "container",
  1480. "container-interface",
  1481. "container-interop",
  1482. "psr"
  1483. ],
  1484. "time": "2017-02-14T16:28:37+00:00"
  1485. },
  1486. {
  1487. "name": "psr/http-message",
  1488. "version": "1.0",
  1489. "source": {
  1490. "type": "git",
  1491. "url": "https://github.com/php-fig/http-message.git",
  1492. "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298"
  1493. },
  1494. "dist": {
  1495. "type": "zip",
  1496. "url": "https://api.github.com/repos/php-fig/http-message/zipball/85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
  1497. "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
  1498. "shasum": ""
  1499. },
  1500. "require": {
  1501. "php": ">=5.3.0"
  1502. },
  1503. "type": "library",
  1504. "extra": {
  1505. "branch-alias": {
  1506. "dev-master": "1.0.x-dev"
  1507. }
  1508. },
  1509. "autoload": {
  1510. "psr-4": {
  1511. "Psr\\Http\\Message\\": "src/"
  1512. }
  1513. },
  1514. "notification-url": "https://packagist.org/downloads/",
  1515. "license": [
  1516. "MIT"
  1517. ],
  1518. "authors": [
  1519. {
  1520. "name": "PHP-FIG",
  1521. "homepage": "http://www.php-fig.org/"
  1522. }
  1523. ],
  1524. "description": "Common interface for HTTP messages",
  1525. "keywords": [
  1526. "http",
  1527. "http-message",
  1528. "psr",
  1529. "psr-7",
  1530. "request",
  1531. "response"
  1532. ],
  1533. "time": "2015-05-04T20:22:00+00:00"
  1534. },
  1535. {
  1536. "name": "psr/log",
  1537. "version": "1.0.0",
  1538. "source": {
  1539. "type": "git",
  1540. "url": "https://github.com/php-fig/log.git",
  1541. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  1542. },
  1543. "dist": {
  1544. "type": "zip",
  1545. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  1546. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  1547. "shasum": ""
  1548. },
  1549. "type": "library",
  1550. "autoload": {
  1551. "psr-0": {
  1552. "Psr\\Log\\": ""
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "authors": [
  1560. {
  1561. "name": "PHP-FIG",
  1562. "homepage": "http://www.php-fig.org/"
  1563. }
  1564. ],
  1565. "description": "Common interface for logging libraries",
  1566. "keywords": [
  1567. "log",
  1568. "psr",
  1569. "psr-3"
  1570. ],
  1571. "time": "2012-12-21T11:40:51+00:00"
  1572. },
  1573. {
  1574. "name": "rlanvin/php-ip",
  1575. "version": "v1.0.0",
  1576. "source": {
  1577. "type": "git",
  1578. "url": "https://github.com/rlanvin/php-ip.git",
  1579. "reference": "737a8b7d4899728144fb9bd0f72f18fe957205f9"
  1580. },
  1581. "dist": {
  1582. "type": "zip",
  1583. "url": "https://api.github.com/repos/rlanvin/php-ip/zipball/737a8b7d4899728144fb9bd0f72f18fe957205f9",
  1584. "reference": "737a8b7d4899728144fb9bd0f72f18fe957205f9",
  1585. "shasum": ""
  1586. },
  1587. "require": {
  1588. "ext-gmp": "*",
  1589. "php": ">=5.3.0"
  1590. },
  1591. "type": "library",
  1592. "autoload": {
  1593. "classmap": [
  1594. "src/"
  1595. ]
  1596. },
  1597. "notification-url": "https://packagist.org/downloads/",
  1598. "license": [
  1599. "MIT"
  1600. ],
  1601. "description": "IPv4/IPv6 manipulation library for PHP",
  1602. "homepage": "https://github.com/rlanvin/php-ip",
  1603. "keywords": [
  1604. "IP",
  1605. "ipv4",
  1606. "ipv6"
  1607. ],
  1608. "time": "2014-04-24T07:00:01+00:00"
  1609. },
  1610. {
  1611. "name": "salsify/json-streaming-parser",
  1612. "version": "v6.0",
  1613. "source": {
  1614. "type": "git",
  1615. "url": "https://github.com/salsify/jsonstreamingparser.git",
  1616. "reference": "210bde08cbb659e01d9c36f4d3f25c4105396566"
  1617. },
  1618. "dist": {
  1619. "type": "zip",
  1620. "url": "https://api.github.com/repos/salsify/jsonstreamingparser/zipball/210bde08cbb659e01d9c36f4d3f25c4105396566",
  1621. "reference": "210bde08cbb659e01d9c36f4d3f25c4105396566",
  1622. "shasum": ""
  1623. },
  1624. "require": {
  1625. "ext-mbstring": "*",
  1626. "php": "^5.4 | ^7.0"
  1627. },
  1628. "require-dev": {
  1629. "phpunit/phpunit": "~4.0"
  1630. },
  1631. "type": "library",
  1632. "autoload": {
  1633. "psr-4": {
  1634. "JsonStreamingParser\\": "src",
  1635. "JsonStreamingParser\\Test\\": "tests"
  1636. }
  1637. },
  1638. "notification-url": "https://packagist.org/downloads/",
  1639. "license": [
  1640. "MIT"
  1641. ],
  1642. "authors": [
  1643. {
  1644. "name": "Maxim Gnatenko",
  1645. "email": "mgnatenko@gmail.com"
  1646. },
  1647. {
  1648. "name": "Rob Gonzalez",
  1649. "email": "rob@salsify.com",
  1650. "homepage": "http://salsify.com/"
  1651. },
  1652. {
  1653. "name": "Max Grigorian",
  1654. "email": "maxakawizard@gmail.com",
  1655. "homepage": "http://wizardcat.com/"
  1656. }
  1657. ],
  1658. "description": "A streaming parser for JSON in PHP.",
  1659. "homepage": "https://github.com/salsify/jsonstreamingparser",
  1660. "keywords": [
  1661. "json",
  1662. "parser",
  1663. "streaming"
  1664. ],
  1665. "time": "2016-03-20T18:22:58+00:00"
  1666. },
  1667. {
  1668. "name": "symfony/asset",
  1669. "version": "v2.8.0",
  1670. "source": {
  1671. "type": "git",
  1672. "url": "https://github.com/symfony/asset.git",
  1673. "reference": "4397184f9013d3f14d898aa7678ceb7c632cdf9a"
  1674. },
  1675. "dist": {
  1676. "type": "zip",
  1677. "url": "https://api.github.com/repos/symfony/asset/zipball/4397184f9013d3f14d898aa7678ceb7c632cdf9a",
  1678. "reference": "4397184f9013d3f14d898aa7678ceb7c632cdf9a",
  1679. "shasum": ""
  1680. },
  1681. "require": {
  1682. "php": ">=5.3.9"
  1683. },
  1684. "require-dev": {
  1685. "symfony/http-foundation": "~2.4"
  1686. },
  1687. "suggest": {
  1688. "symfony/http-foundation": ""
  1689. },
  1690. "type": "library",
  1691. "extra": {
  1692. "branch-alias": {
  1693. "dev-master": "2.8-dev"
  1694. }
  1695. },
  1696. "autoload": {
  1697. "psr-4": {
  1698. "Symfony\\Component\\Asset\\": ""
  1699. },
  1700. "exclude-from-classmap": [
  1701. "/Tests/"
  1702. ]
  1703. },
  1704. "notification-url": "https://packagist.org/downloads/",
  1705. "license": [
  1706. "MIT"
  1707. ],
  1708. "authors": [
  1709. {
  1710. "name": "Fabien Potencier",
  1711. "email": "fabien@symfony.com"
  1712. },
  1713. {
  1714. "name": "Symfony Community",
  1715. "homepage": "https://symfony.com/contributors"
  1716. }
  1717. ],
  1718. "description": "Symfony Asset Component",
  1719. "homepage": "https://symfony.com",
  1720. "time": "2015-11-28T11:03:39+00:00"
  1721. },
  1722. {
  1723. "name": "symfony/browser-kit",
  1724. "version": "v2.0.9",
  1725. "target-dir": "Symfony/Component/BrowserKit",
  1726. "source": {
  1727. "type": "git",
  1728. "url": "https://github.com/symfony/browser-kit.git",
  1729. "reference": "c02441f5b4c834618470e8f607b0db1935fdd07c"
  1730. },
  1731. "dist": {
  1732. "type": "zip",
  1733. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/c02441f5b4c834618470e8f607b0db1935fdd07c",
  1734. "reference": "c02441f5b4c834618470e8f607b0db1935fdd07c",
  1735. "shasum": ""
  1736. },
  1737. "require": {
  1738. "php": ">=5.3.2",
  1739. "symfony/dom-crawler": "self.version"
  1740. },
  1741. "suggest": {
  1742. "symfony/process": "v2.0.9"
  1743. },
  1744. "type": "library",
  1745. "autoload": {
  1746. "psr-0": {
  1747. "Symfony\\Component\\BrowserKit": ""
  1748. }
  1749. },
  1750. "notification-url": "https://packagist.org/downloads/",
  1751. "license": [
  1752. "MIT"
  1753. ],
  1754. "authors": [
  1755. {
  1756. "name": "Symfony Community",
  1757. "homepage": "http://symfony.com/contributors"
  1758. },
  1759. {
  1760. "name": "Fabien Potencier",
  1761. "email": "fabien@symfony.com"
  1762. }
  1763. ],
  1764. "description": "Symfony BrowserKit Component",
  1765. "homepage": "http://symfony.com",
  1766. "time": "2012-01-05T13:51:20+00:00"
  1767. },
  1768. {
  1769. "name": "symfony/class-loader",
  1770. "version": "v2.8.0",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/symfony/class-loader.git",
  1774. "reference": "51f83451bf0ddfc696e47e4642d6cd10fcfce160"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/symfony/class-loader/zipball/51f83451bf0ddfc696e47e4642d6cd10fcfce160",
  1779. "reference": "51f83451bf0ddfc696e47e4642d6cd10fcfce160",
  1780. "shasum": ""
  1781. },
  1782. "require": {
  1783. "php": ">=5.3.9"
  1784. },
  1785. "require-dev": {
  1786. "symfony/finder": "~2.0,>=2.0.5|~3.0.0"
  1787. },
  1788. "type": "library",
  1789. "extra": {
  1790. "branch-alias": {
  1791. "dev-master": "2.8-dev"
  1792. }
  1793. },
  1794. "autoload": {
  1795. "psr-4": {
  1796. "Symfony\\Component\\ClassLoader\\": ""
  1797. },
  1798. "exclude-from-classmap": [
  1799. "/Tests/"
  1800. ]
  1801. },
  1802. "notification-url": "https://packagist.org/downloads/",
  1803. "license": [
  1804. "MIT"
  1805. ],
  1806. "authors": [
  1807. {
  1808. "name": "Fabien Potencier",
  1809. "email": "fabien@symfony.com"
  1810. },
  1811. {
  1812. "name": "Symfony Community",
  1813. "homepage": "https://symfony.com/contributors"
  1814. }
  1815. ],
  1816. "description": "Symfony ClassLoader Component",
  1817. "homepage": "https://symfony.com",
  1818. "time": "2015-11-26T07:00:59+00:00"
  1819. },
  1820. {
  1821. "name": "symfony/config",
  1822. "version": "v3.3.0",
  1823. "source": {
  1824. "type": "git",
  1825. "url": "https://github.com/symfony/config.git",
  1826. "reference": "79f86253ba482ca7f17718e886e6d164e5ba6d45"
  1827. },
  1828. "dist": {
  1829. "type": "zip",
  1830. "url": "https://api.github.com/repos/symfony/config/zipball/79f86253ba482ca7f17718e886e6d164e5ba6d45",
  1831. "reference": "79f86253ba482ca7f17718e886e6d164e5ba6d45",
  1832. "shasum": ""
  1833. },
  1834. "require": {
  1835. "php": ">=5.5.9",
  1836. "symfony/filesystem": "~2.8|~3.0"
  1837. },
  1838. "conflict": {
  1839. "symfony/dependency-injection": "<3.3"
  1840. },
  1841. "require-dev": {
  1842. "symfony/dependency-injection": "~3.3",
  1843. "symfony/yaml": "~3.0"
  1844. },
  1845. "suggest": {
  1846. "symfony/yaml": "To use the yaml reference dumper"
  1847. },
  1848. "type": "library",
  1849. "extra": {
  1850. "branch-alias": {
  1851. "dev-master": "3.3-dev"
  1852. }
  1853. },
  1854. "autoload": {
  1855. "psr-4": {
  1856. "Symfony\\Component\\Config\\": ""
  1857. },
  1858. "exclude-from-classmap": [
  1859. "/Tests/"
  1860. ]
  1861. },
  1862. "notification-url": "https://packagist.org/downloads/",
  1863. "license": [
  1864. "MIT"
  1865. ],
  1866. "authors": [
  1867. {
  1868. "name": "Fabien Potencier",
  1869. "email": "fabien@symfony.com"
  1870. },
  1871. {
  1872. "name": "Symfony Community",
  1873. "homepage": "https://symfony.com/contributors"
  1874. }
  1875. ],
  1876. "description": "Symfony Config Component",
  1877. "homepage": "https://symfony.com",
  1878. "time": "2017-05-29T18:41:32+00:00"
  1879. },
  1880. {
  1881. "name": "symfony/console",
  1882. "version": "v3.3.0",
  1883. "source": {
  1884. "type": "git",
  1885. "url": "https://github.com/symfony/console.git",
  1886. "reference": "c80e63f3f5e3a331bfc25e6e9332b10422eb9b05"
  1887. },
  1888. "dist": {
  1889. "type": "zip",
  1890. "url": "https://api.github.com/repos/symfony/console/zipball/c80e63f3f5e3a331bfc25e6e9332b10422eb9b05",
  1891. "reference": "c80e63f3f5e3a331bfc25e6e9332b10422eb9b05",
  1892. "shasum": ""
  1893. },
  1894. "require": {
  1895. "php": ">=5.5.9",
  1896. "symfony/debug": "~2.8|~3.0",
  1897. "symfony/polyfill-mbstring": "~1.0"
  1898. },
  1899. "conflict": {
  1900. "symfony/dependency-injection": "<3.3"
  1901. },
  1902. "require-dev": {
  1903. "psr/log": "~1.0",
  1904. "symfony/dependency-injection": "~3.3",
  1905. "symfony/event-dispatcher": "~2.8|~3.0",
  1906. "symfony/filesystem": "~2.8|~3.0",
  1907. "symfony/http-kernel": "~2.8|~3.0",
  1908. "symfony/process": "~2.8|~3.0"
  1909. },
  1910. "suggest": {
  1911. "psr/log": "For using the console logger",
  1912. "symfony/event-dispatcher": "",
  1913. "symfony/filesystem": "",
  1914. "symfony/process": ""
  1915. },
  1916. "type": "library",
  1917. "extra": {
  1918. "branch-alias": {
  1919. "dev-master": "3.3-dev"
  1920. }
  1921. },
  1922. "autoload": {
  1923. "psr-4": {
  1924. "Symfony\\Component\\Console\\": ""
  1925. },
  1926. "exclude-from-classmap": [
  1927. "/Tests/"
  1928. ]
  1929. },
  1930. "notification-url": "https://packagist.org/downloads/",
  1931. "license": [
  1932. "MIT"
  1933. ],
  1934. "authors": [
  1935. {
  1936. "name": "Fabien Potencier",
  1937. "email": "fabien@symfony.com"
  1938. },
  1939. {
  1940. "name": "Symfony Community",
  1941. "homepage": "https://symfony.com/contributors"
  1942. }
  1943. ],
  1944. "description": "Symfony Console Component",
  1945. "homepage": "https://symfony.com",
  1946. "time": "2017-05-28T14:08:56+00:00"
  1947. },
  1948. {
  1949. "name": "symfony/debug",
  1950. "version": "v2.8.0",
  1951. "source": {
  1952. "type": "git",
  1953. "url": "https://github.com/symfony/debug.git",
  1954. "reference": "d371ecb85254a8dff7f6d843bf49d1197e7d533e"
  1955. },
  1956. "dist": {
  1957. "type": "zip",
  1958. "url": "https://api.github.com/repos/symfony/debug/zipball/d371ecb85254a8dff7f6d843bf49d1197e7d533e",
  1959. "reference": "d371ecb85254a8dff7f6d843bf49d1197e7d533e",
  1960. "shasum": ""
  1961. },
  1962. "require": {
  1963. "php": ">=5.3.9",
  1964. "psr/log": "~1.0"
  1965. },
  1966. "conflict": {
  1967. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1968. },
  1969. "require-dev": {
  1970. "symfony/class-loader": "~2.2|~3.0.0",
  1971. "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2|~3.0.0"
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "branch-alias": {
  1976. "dev-master": "2.8-dev"
  1977. }
  1978. },
  1979. "autoload": {
  1980. "psr-4": {
  1981. "Symfony\\Component\\Debug\\": ""
  1982. },
  1983. "exclude-from-classmap": [
  1984. "/Tests/"
  1985. ]
  1986. },
  1987. "notification-url": "https://packagist.org/downloads/",
  1988. "license": [
  1989. "MIT"
  1990. ],
  1991. "authors": [
  1992. {
  1993. "name": "Fabien Potencier",
  1994. "email": "fabien@symfony.com"
  1995. },
  1996. {
  1997. "name": "Symfony Community",
  1998. "homepage": "https://symfony.com/contributors"
  1999. }
  2000. ],
  2001. "description": "Symfony Debug Component",
  2002. "homepage": "https://symfony.com",
  2003. "time": "2015-11-27T05:45:55+00:00"
  2004. },
  2005. {
  2006. "name": "symfony/dependency-injection",
  2007. "version": "v3.3.0",
  2008. "source": {
  2009. "type": "git",
  2010. "url": "https://github.com/symfony/dependency-injection.git",
  2011. "reference": "988c7bd6ec880690792ccf2a1e5ca05401c2a63d"
  2012. },
  2013. "dist": {
  2014. "type": "zip",
  2015. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/988c7bd6ec880690792ccf2a1e5ca05401c2a63d",
  2016. "reference": "988c7bd6ec880690792ccf2a1e5ca05401c2a63d",
  2017. "shasum": ""
  2018. },
  2019. "require": {
  2020. "php": ">=5.5.9",
  2021. "psr/container": "^1.0"
  2022. },
  2023. "conflict": {
  2024. "symfony/config": "<=3.3-beta1",
  2025. "symfony/finder": "<3.3",
  2026. "symfony/yaml": "<3.3"
  2027. },
  2028. "provide": {
  2029. "psr/container-implementation": "1.0"
  2030. },
  2031. "require-dev": {
  2032. "symfony/config": "~3.3",
  2033. "symfony/expression-language": "~2.8|~3.0",
  2034. "symfony/yaml": "~3.3"
  2035. },
  2036. "suggest": {
  2037. "symfony/config": "",
  2038. "symfony/expression-language": "For using expressions in service container configuration",
  2039. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  2040. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2041. "symfony/yaml": ""
  2042. },
  2043. "type": "library",
  2044. "extra": {
  2045. "branch-alias": {
  2046. "dev-master": "3.3-dev"
  2047. }
  2048. },
  2049. "autoload": {
  2050. "psr-4": {
  2051. "Symfony\\Component\\DependencyInjection\\": ""
  2052. },
  2053. "exclude-from-classmap": [
  2054. "/Tests/"
  2055. ]
  2056. },
  2057. "notification-url": "https://packagist.org/downloads/",
  2058. "license": [
  2059. "MIT"
  2060. ],
  2061. "authors": [
  2062. {
  2063. "name": "Fabien Potencier",
  2064. "email": "fabien@symfony.com"
  2065. },
  2066. {
  2067. "name": "Symfony Community",
  2068. "homepage": "https://symfony.com/contributors"
  2069. }
  2070. ],
  2071. "description": "Symfony DependencyInjection Component",
  2072. "homepage": "https://symfony.com",
  2073. "time": "2017-05-25T23:10:31+00:00"
  2074. },
  2075. {
  2076. "name": "symfony/dom-crawler",
  2077. "version": "v2.0.9",
  2078. "target-dir": "Symfony/Component/DomCrawler",
  2079. "source": {
  2080. "type": "git",
  2081. "url": "https://github.com/symfony/dom-crawler.git",
  2082. "reference": "b88e3f31428a4fcc3eb48619b76e57e46caaf45b"
  2083. },
  2084. "dist": {
  2085. "type": "zip",
  2086. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b88e3f31428a4fcc3eb48619b76e57e46caaf45b",
  2087. "reference": "b88e3f31428a4fcc3eb48619b76e57e46caaf45b",
  2088. "shasum": ""
  2089. },
  2090. "require": {
  2091. "php": ">=5.3.2"
  2092. },
  2093. "suggest": {
  2094. "symfony/css-selector": "v2.0.9"
  2095. },
  2096. "type": "library",
  2097. "autoload": {
  2098. "psr-0": {
  2099. "Symfony\\Component\\DomCrawler": ""
  2100. }
  2101. },
  2102. "notification-url": "https://packagist.org/downloads/",
  2103. "license": [
  2104. "MIT"
  2105. ],
  2106. "authors": [
  2107. {
  2108. "name": "Symfony Community",
  2109. "homepage": "http://symfony.com/contributors"
  2110. },
  2111. {
  2112. "name": "Fabien Potencier",
  2113. "email": "fabien@symfony.com"
  2114. }
  2115. ],
  2116. "description": "Symfony DomCrawler Component",
  2117. "homepage": "http://symfony.com",
  2118. "time": "2012-01-05T13:51:20+00:00"
  2119. },
  2120. {
  2121. "name": "symfony/event-dispatcher",
  2122. "version": "v2.8.0",
  2123. "source": {
  2124. "type": "git",
  2125. "url": "https://github.com/symfony/event-dispatcher.git",
  2126. "reference": "a5eb815363c0388e83247e7e9853e5dbc14999cc"
  2127. },
  2128. "dist": {
  2129. "type": "zip",
  2130. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a5eb815363c0388e83247e7e9853e5dbc14999cc",
  2131. "reference": "a5eb815363c0388e83247e7e9853e5dbc14999cc",
  2132. "shasum": ""
  2133. },
  2134. "require": {
  2135. "php": ">=5.3.9"
  2136. },
  2137. "require-dev": {
  2138. "psr/log": "~1.0",
  2139. "symfony/config": "~2.0,>=2.0.5|~3.0.0",
  2140. "symfony/dependency-injection": "~2.6|~3.0.0",
  2141. "symfony/expression-language": "~2.6|~3.0.0",
  2142. "symfony/stopwatch": "~2.3|~3.0.0"
  2143. },
  2144. "suggest": {
  2145. "symfony/dependency-injection": "",
  2146. "symfony/http-kernel": ""
  2147. },
  2148. "type": "library",
  2149. "extra": {
  2150. "branch-alias": {
  2151. "dev-master": "2.8-dev"
  2152. }
  2153. },
  2154. "autoload": {
  2155. "psr-4": {
  2156. "Symfony\\Component\\EventDispatcher\\": ""
  2157. },
  2158. "exclude-from-classmap": [
  2159. "/Tests/"
  2160. ]
  2161. },
  2162. "notification-url": "https://packagist.org/downloads/",
  2163. "license": [
  2164. "MIT"
  2165. ],
  2166. "authors": [
  2167. {
  2168. "name": "Fabien Potencier",
  2169. "email": "fabien@symfony.com"
  2170. },
  2171. {
  2172. "name": "Symfony Community",
  2173. "homepage": "https://symfony.com/contributors"
  2174. }
  2175. ],
  2176. "description": "Symfony EventDispatcher Component",
  2177. "homepage": "https://symfony.com",
  2178. "time": "2015-10-30T20:15:42+00:00"
  2179. },
  2180. {
  2181. "name": "symfony/filesystem",
  2182. "version": "v2.8.0",
  2183. "source": {
  2184. "type": "git",
  2185. "url": "https://github.com/symfony/filesystem.git",
  2186. "reference": "3e661a0d521ac67496515fa6e6704bd61bcfff60"
  2187. },
  2188. "dist": {
  2189. "type": "zip",
  2190. "url": "https://api.github.com/repos/symfony/filesystem/zipball/3e661a0d521ac67496515fa6e6704bd61bcfff60",
  2191. "reference": "3e661a0d521ac67496515fa6e6704bd61bcfff60",
  2192. "shasum": ""
  2193. },
  2194. "require": {
  2195. "php": ">=5.3.9"
  2196. },
  2197. "type": "library",
  2198. "extra": {
  2199. "branch-alias": {
  2200. "dev-master": "2.8-dev"
  2201. }
  2202. },
  2203. "autoload": {
  2204. "psr-4": {
  2205. "Symfony\\Component\\Filesystem\\": ""
  2206. },
  2207. "exclude-from-classmap": [
  2208. "/Tests/"
  2209. ]
  2210. },
  2211. "notification-url": "https://packagist.org/downloads/",
  2212. "license": [
  2213. "MIT"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Fabien Potencier",
  2218. "email": "fabien@symfony.com"
  2219. },
  2220. {
  2221. "name": "Symfony Community",
  2222. "homepage": "https://symfony.com/contributors"
  2223. }
  2224. ],
  2225. "description": "Symfony Filesystem Component",
  2226. "homepage": "https://symfony.com",
  2227. "time": "2015-11-23T10:19:46+00:00"
  2228. },
  2229. {
  2230. "name": "symfony/form",
  2231. "version": "v2.3.0",
  2232. "target-dir": "Symfony/Component/Form",
  2233. "source": {
  2234. "type": "git",
  2235. "url": "https://github.com/symfony/form.git",
  2236. "reference": "64e28bf3c21a4d9ddc1b9eb73468fe193c5117f7"
  2237. },
  2238. "dist": {
  2239. "type": "zip",
  2240. "url": "https://api.github.com/repos/symfony/form/zipball/64e28bf3c21a4d9ddc1b9eb73468fe193c5117f7",
  2241. "reference": "64e28bf3c21a4d9ddc1b9eb73468fe193c5117f7",
  2242. "shasum": ""
  2243. },
  2244. "require": {
  2245. "php": ">=5.3.3",
  2246. "symfony/event-dispatcher": "~2.1",
  2247. "symfony/intl": "~2.3",
  2248. "symfony/options-resolver": "~2.1",
  2249. "symfony/property-access": "~2.2"
  2250. },
  2251. "require-dev": {
  2252. "symfony/http-foundation": "~2.2",
  2253. "symfony/validator": "~2.2"
  2254. },
  2255. "suggest": {
  2256. "symfony/http-foundation": "",
  2257. "symfony/validator": ""
  2258. },
  2259. "type": "library",
  2260. "extra": {
  2261. "branch-alias": {
  2262. "dev-master": "2.3-dev"
  2263. }
  2264. },
  2265. "autoload": {
  2266. "psr-0": {
  2267. "Symfony\\Component\\Form\\": ""
  2268. }
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "Symfony Community",
  2277. "homepage": "http://symfony.com/contributors"
  2278. },
  2279. {
  2280. "name": "Fabien Potencier",
  2281. "email": "fabien@symfony.com"
  2282. }
  2283. ],
  2284. "description": "Symfony Form Component",
  2285. "homepage": "http://symfony.com",
  2286. "time": "2013-06-02T12:05:51+00:00"
  2287. },
  2288. {
  2289. "name": "symfony/framework-bundle",
  2290. "version": "v3.0.0",
  2291. "source": {
  2292. "type": "git",
  2293. "url": "https://github.com/symfony/framework-bundle.git",
  2294. "reference": "a7b727a4fca481ec830f7ac9838b49d2293c460c"
  2295. },
  2296. "dist": {
  2297. "type": "zip",
  2298. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/a7b727a4fca481ec830f7ac9838b49d2293c460c",
  2299. "reference": "a7b727a4fca481ec830f7ac9838b49d2293c460c",
  2300. "shasum": ""
  2301. },
  2302. "require": {
  2303. "doctrine/annotations": "~1.0",
  2304. "doctrine/cache": "~1.0",
  2305. "php": ">=5.5.9",
  2306. "symfony/asset": "~2.8|~3.0",
  2307. "symfony/class-loader": "~2.8|~3.0",
  2308. "symfony/config": "~2.8|~3.0",
  2309. "symfony/dependency-injection": "~2.8|~3.0",
  2310. "symfony/event-dispatcher": "~2.8|~3.0",
  2311. "symfony/filesystem": "~2.8|~3.0",
  2312. "symfony/http-foundation": "~2.8|~3.0",
  2313. "symfony/http-kernel": "~2.8|~3.0",
  2314. "symfony/polyfill-mbstring": "~1.0",
  2315. "symfony/routing": "~3.0",
  2316. "symfony/security-core": "~2.8|~3.0",
  2317. "symfony/security-csrf": "~2.8|~3.0",
  2318. "symfony/stopwatch": "~2.8|~3.0",
  2319. "symfony/templating": "~2.8|~3.0",
  2320. "symfony/translation": "~2.8|~3.0"
  2321. },
  2322. "require-dev": {
  2323. "phpdocumentor/reflection": "^1.0.7",
  2324. "symfony/browser-kit": "~2.8|~3.0",
  2325. "symfony/console": "~2.8|~3.0",
  2326. "symfony/css-selector": "~2.8|~3.0",
  2327. "symfony/dom-crawler": "~2.8|~3.0",
  2328. "symfony/expression-language": "~2.8|~3.0",
  2329. "symfony/finder": "~2.8|~3.0",
  2330. "symfony/form": "~2.8|~3.0",
  2331. "symfony/polyfill-intl-icu": "~1.0",
  2332. "symfony/process": "~2.8|~3.0",
  2333. "symfony/property-info": "~2.8|~3.0",
  2334. "symfony/security": "~2.8|~3.0",
  2335. "symfony/validator": "~2.8|~3.0",
  2336. "symfony/yaml": "~2.8|~3.0"
  2337. },
  2338. "suggest": {
  2339. "symfony/console": "For using the console commands",
  2340. "symfony/finder": "For using the translation loader and cache warmer",
  2341. "symfony/form": "For using forms",
  2342. "symfony/property-info": "For using the property_info_extractor service",
  2343. "symfony/serializer": "For using the serializer service",
  2344. "symfony/validator": "For using validation",
  2345. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  2346. },
  2347. "type": "symfony-bundle",
  2348. "extra": {
  2349. "branch-alias": {
  2350. "dev-master": "3.0-dev"
  2351. }
  2352. },
  2353. "autoload": {
  2354. "psr-4": {
  2355. "Symfony\\Bundle\\FrameworkBundle\\": ""
  2356. },
  2357. "exclude-from-classmap": [
  2358. "/Tests/"
  2359. ]
  2360. },
  2361. "notification-url": "https://packagist.org/downloads/",
  2362. "license": [
  2363. "MIT"
  2364. ],
  2365. "authors": [
  2366. {
  2367. "name": "Fabien Potencier",
  2368. "email": "fabien@symfony.com"
  2369. },
  2370. {
  2371. "name": "Symfony Community",
  2372. "homepage": "https://symfony.com/contributors"
  2373. }
  2374. ],
  2375. "description": "Symfony FrameworkBundle",
  2376. "homepage": "https://symfony.com",
  2377. "time": "2015-11-28T09:23:07+00:00"
  2378. },
  2379. {
  2380. "name": "symfony/http-foundation",
  2381. "version": "v3.3.0",
  2382. "source": {
  2383. "type": "git",
  2384. "url": "https://github.com/symfony/http-foundation.git",
  2385. "reference": "a3272c06d538bd48261e7d83308e7f84992d4ec8"
  2386. },
  2387. "dist": {
  2388. "type": "zip",
  2389. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a3272c06d538bd48261e7d83308e7f84992d4ec8",
  2390. "reference": "a3272c06d538bd48261e7d83308e7f84992d4ec8",
  2391. "shasum": ""
  2392. },
  2393. "require": {
  2394. "php": ">=5.5.9",
  2395. "symfony/polyfill-mbstring": "~1.1"
  2396. },
  2397. "require-dev": {
  2398. "symfony/expression-language": "~2.8|~3.0"
  2399. },
  2400. "type": "library",
  2401. "extra": {
  2402. "branch-alias": {
  2403. "dev-master": "3.3-dev"
  2404. }
  2405. },
  2406. "autoload": {
  2407. "psr-4": {
  2408. "Symfony\\Component\\HttpFoundation\\": ""
  2409. },
  2410. "exclude-from-classmap": [
  2411. "/Tests/"
  2412. ]
  2413. },
  2414. "notification-url": "https://packagist.org/downloads/",
  2415. "license": [
  2416. "MIT"
  2417. ],
  2418. "authors": [
  2419. {
  2420. "name": "Fabien Potencier",
  2421. "email": "fabien@symfony.com"
  2422. },
  2423. {
  2424. "name": "Symfony Community",
  2425. "homepage": "https://symfony.com/contributors"
  2426. }
  2427. ],
  2428. "description": "Symfony HttpFoundation Component",
  2429. "homepage": "https://symfony.com",
  2430. "time": "2017-05-25T13:39:26+00:00"
  2431. },
  2432. {
  2433. "name": "symfony/http-kernel",
  2434. "version": "v3.0.0",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://github.com/symfony/http-kernel.git",
  2438. "reference": "2f7071c25cae37b79be6d9ea1c43c1035d8c6b06"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2f7071c25cae37b79be6d9ea1c43c1035d8c6b06",
  2443. "reference": "2f7071c25cae37b79be6d9ea1c43c1035d8c6b06",
  2444. "shasum": ""
  2445. },
  2446. "require": {
  2447. "php": ">=5.5.9",
  2448. "psr/log": "~1.0",
  2449. "symfony/debug": "~2.8|~3.0",
  2450. "symfony/event-dispatcher": "~2.8|~3.0",
  2451. "symfony/http-foundation": "~2.8|~3.0"
  2452. },
  2453. "conflict": {
  2454. "symfony/config": "<2.8"
  2455. },
  2456. "require-dev": {
  2457. "symfony/browser-kit": "~2.8|~3.0",
  2458. "symfony/class-loader": "~2.8|~3.0",
  2459. "symfony/config": "~2.8|~3.0",
  2460. "symfony/console": "~2.8|~3.0",
  2461. "symfony/css-selector": "~2.8|~3.0",
  2462. "symfony/dependency-injection": "~2.8|~3.0",
  2463. "symfony/dom-crawler": "~2.8|~3.0",
  2464. "symfony/expression-language": "~2.8|~3.0",
  2465. "symfony/finder": "~2.8|~3.0",
  2466. "symfony/process": "~2.8|~3.0",
  2467. "symfony/routing": "~2.8|~3.0",
  2468. "symfony/stopwatch": "~2.8|~3.0",
  2469. "symfony/templating": "~2.8|~3.0",
  2470. "symfony/translation": "~2.8|~3.0",
  2471. "symfony/var-dumper": "~2.8|~3.0"
  2472. },
  2473. "suggest": {
  2474. "symfony/browser-kit": "",
  2475. "symfony/class-loader": "",
  2476. "symfony/config": "",
  2477. "symfony/console": "",
  2478. "symfony/dependency-injection": "",
  2479. "symfony/finder": "",
  2480. "symfony/var-dumper": ""
  2481. },
  2482. "type": "library",
  2483. "extra": {
  2484. "branch-alias": {
  2485. "dev-master": "3.0-dev"
  2486. }
  2487. },
  2488. "autoload": {
  2489. "psr-4": {
  2490. "Symfony\\Component\\HttpKernel\\": ""
  2491. },
  2492. "exclude-from-classmap": [
  2493. "/Tests/"
  2494. ]
  2495. },
  2496. "notification-url": "https://packagist.org/downloads/",
  2497. "license": [
  2498. "MIT"
  2499. ],
  2500. "authors": [
  2501. {
  2502. "name": "Fabien Potencier",
  2503. "email": "fabien@symfony.com"
  2504. },
  2505. {
  2506. "name": "Symfony Community",
  2507. "homepage": "https://symfony.com/contributors"
  2508. }
  2509. ],
  2510. "description": "Symfony HttpKernel Component",
  2511. "homepage": "https://symfony.com",
  2512. "time": "2015-11-30T20:59:24+00:00"
  2513. },
  2514. {
  2515. "name": "symfony/icu",
  2516. "version": "v1.0.0",
  2517. "target-dir": "Symfony/Component/Icu",
  2518. "source": {
  2519. "type": "git",
  2520. "url": "https://github.com/symfony/icu.git",
  2521. "reference": "cac3fdfb111adbe590155f491594636d45129783"
  2522. },
  2523. "dist": {
  2524. "type": "zip",
  2525. "url": "https://api.github.com/repos/symfony/icu/zipball/cac3fdfb111adbe590155f491594636d45129783",
  2526. "reference": "cac3fdfb111adbe590155f491594636d45129783",
  2527. "shasum": ""
  2528. },
  2529. "require": {
  2530. "php": ">=5.3.3",
  2531. "symfony/intl": "~2.3"
  2532. },
  2533. "type": "library",
  2534. "autoload": {
  2535. "psr-0": {
  2536. "Symfony\\Component\\Icu\\": ""
  2537. }
  2538. },
  2539. "notification-url": "https://packagist.org/downloads/",
  2540. "license": [
  2541. "MIT"
  2542. ],
  2543. "authors": [
  2544. {
  2545. "name": "Symfony Community",
  2546. "homepage": "http://symfony.com/contributors"
  2547. },
  2548. {
  2549. "name": "Bernhard Schussek",
  2550. "email": "bschussek@gmail.com"
  2551. }
  2552. ],
  2553. "description": "Contains an excerpt of the ICU data and classes to load it.",
  2554. "homepage": "http://symfony.com",
  2555. "keywords": [
  2556. "icu",
  2557. "intl"
  2558. ],
  2559. "abandoned": "symfony/intl",
  2560. "time": "2013-06-03T18:32:07+00:00"
  2561. },
  2562. {
  2563. "name": "symfony/intl",
  2564. "version": "v2.3.0",
  2565. "target-dir": "Symfony/Component/Intl",
  2566. "source": {
  2567. "type": "git",
  2568. "url": "https://github.com/symfony/intl.git",
  2569. "reference": "7bb654460bd1f94ea6d472fbfc4e88a3a56a26d1"
  2570. },
  2571. "dist": {
  2572. "type": "zip",
  2573. "url": "https://api.github.com/repos/symfony/intl/zipball/7bb654460bd1f94ea6d472fbfc4e88a3a56a26d1",
  2574. "reference": "7bb654460bd1f94ea6d472fbfc4e88a3a56a26d1",
  2575. "shasum": ""
  2576. },
  2577. "require": {
  2578. "php": ">=5.3.3",
  2579. "symfony/icu": "~1.0-RC"
  2580. },
  2581. "require-dev": {
  2582. "symfony/filesystem": ">=2.1"
  2583. },
  2584. "suggest": {
  2585. "ext-intl": "to use the component with locales other than \"en\""
  2586. },
  2587. "type": "library",
  2588. "extra": {
  2589. "branch-alias": {
  2590. "dev-master": "2.3-dev"
  2591. }
  2592. },
  2593. "autoload": {
  2594. "psr-0": {
  2595. "Symfony\\Component\\Intl\\": ""
  2596. },
  2597. "classmap": [
  2598. "Symfony/Component/Intl/Resources/stubs"
  2599. ],
  2600. "files": [
  2601. "Symfony/Component/Intl/Resources/stubs/functions.php"
  2602. ]
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "MIT"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "Symfony Community",
  2611. "homepage": "http://symfony.com/contributors"
  2612. },
  2613. {
  2614. "name": "Bernhard Schussek",
  2615. "email": "bschussek@gmail.com"
  2616. },
  2617. {
  2618. "name": "Eriksen Costa",
  2619. "email": "eriksen.costa@infranology.com.br"
  2620. },
  2621. {
  2622. "name": "Igor Wiedler",
  2623. "email": "igor@wiedler.ch"
  2624. }
  2625. ],
  2626. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  2627. "homepage": "http://symfony.com",
  2628. "keywords": [
  2629. "i18n",
  2630. "icu",
  2631. "internationalization",
  2632. "intl",
  2633. "l10n",
  2634. "localization"
  2635. ],
  2636. "time": "2013-05-18T11:21:22+00:00"
  2637. },
  2638. {
  2639. "name": "symfony/options-resolver",
  2640. "version": "v2.7.0",
  2641. "source": {
  2642. "type": "git",
  2643. "url": "https://github.com/symfony/options-resolver.git",
  2644. "reference": "151155b1f1e817c4c763582260777f68ac55bdda"
  2645. },
  2646. "dist": {
  2647. "type": "zip",
  2648. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/151155b1f1e817c4c763582260777f68ac55bdda",
  2649. "reference": "151155b1f1e817c4c763582260777f68ac55bdda",
  2650. "shasum": ""
  2651. },
  2652. "require": {
  2653. "php": ">=5.3.9"
  2654. },
  2655. "require-dev": {
  2656. "symfony/phpunit-bridge": "~2.7"
  2657. },
  2658. "type": "library",
  2659. "extra": {
  2660. "branch-alias": {
  2661. "dev-master": "2.7-dev"
  2662. }
  2663. },
  2664. "autoload": {
  2665. "psr-4": {
  2666. "Symfony\\Component\\OptionsResolver\\": ""
  2667. }
  2668. },
  2669. "notification-url": "https://packagist.org/downloads/",
  2670. "license": [
  2671. "MIT"
  2672. ],
  2673. "authors": [
  2674. {
  2675. "name": "Fabien Potencier",
  2676. "email": "fabien@symfony.com"
  2677. },
  2678. {
  2679. "name": "Symfony Community",
  2680. "homepage": "https://symfony.com/contributors"
  2681. }
  2682. ],
  2683. "description": "Symfony OptionsResolver Component",
  2684. "homepage": "https://symfony.com",
  2685. "keywords": [
  2686. "config",
  2687. "configuration",
  2688. "options"
  2689. ],
  2690. "time": "2015-05-13T11:34:46+00:00"
  2691. },
  2692. {
  2693. "name": "symfony/polyfill-mbstring",
  2694. "version": "v1.1.0",
  2695. "source": {
  2696. "type": "git",
  2697. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2698. "reference": "1289d16209491b584839022f29257ad859b8532d"
  2699. },
  2700. "dist": {
  2701. "type": "zip",
  2702. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/1289d16209491b584839022f29257ad859b8532d",
  2703. "reference": "1289d16209491b584839022f29257ad859b8532d",
  2704. "shasum": ""
  2705. },
  2706. "require": {
  2707. "php": ">=5.3.3"
  2708. },
  2709. "suggest": {
  2710. "ext-mbstring": "For best performance"
  2711. },
  2712. "type": "library",
  2713. "extra": {
  2714. "branch-alias": {
  2715. "dev-master": "1.1-dev"
  2716. }
  2717. },
  2718. "autoload": {
  2719. "psr-4": {
  2720. "Symfony\\Polyfill\\Mbstring\\": ""
  2721. },
  2722. "files": [
  2723. "bootstrap.php"
  2724. ]
  2725. },
  2726. "notification-url": "https://packagist.org/downloads/",
  2727. "license": [
  2728. "MIT"
  2729. ],
  2730. "authors": [
  2731. {
  2732. "name": "Nicolas Grekas",
  2733. "email": "p@tchwork.com"
  2734. },
  2735. {
  2736. "name": "Symfony Community",
  2737. "homepage": "https://symfony.com/contributors"
  2738. }
  2739. ],
  2740. "description": "Symfony polyfill for the Mbstring extension",
  2741. "homepage": "https://symfony.com",
  2742. "keywords": [
  2743. "compatibility",
  2744. "mbstring",
  2745. "polyfill",
  2746. "portable",
  2747. "shim"
  2748. ],
  2749. "time": "2016-01-20T09:13:37+00:00"
  2750. },
  2751. {
  2752. "name": "symfony/polyfill-php56",
  2753. "version": "v1.0.0",
  2754. "source": {
  2755. "type": "git",
  2756. "url": "https://github.com/symfony/polyfill-php56.git",
  2757. "reference": "a6bd4770a6967517e6610529e14afaa3111094a3"
  2758. },
  2759. "dist": {
  2760. "type": "zip",
  2761. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/a6bd4770a6967517e6610529e14afaa3111094a3",
  2762. "reference": "a6bd4770a6967517e6610529e14afaa3111094a3",
  2763. "shasum": ""
  2764. },
  2765. "require": {
  2766. "php": ">=5.3.3",
  2767. "symfony/polyfill-util": "~1.0"
  2768. },
  2769. "type": "library",
  2770. "extra": {
  2771. "branch-alias": {
  2772. "dev-master": "1.0-dev"
  2773. }
  2774. },
  2775. "autoload": {
  2776. "psr-4": {
  2777. "Symfony\\Polyfill\\Php56\\": ""
  2778. },
  2779. "files": [
  2780. "bootstrap.php"
  2781. ]
  2782. },
  2783. "notification-url": "https://packagist.org/downloads/",
  2784. "license": [
  2785. "MIT"
  2786. ],
  2787. "authors": [
  2788. {
  2789. "name": "Nicolas Grekas",
  2790. "email": "p@tchwork.com"
  2791. },
  2792. {
  2793. "name": "Symfony Community",
  2794. "homepage": "https://symfony.com/contributors"
  2795. }
  2796. ],
  2797. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  2798. "homepage": "https://symfony.com",
  2799. "keywords": [
  2800. "compatibility",
  2801. "polyfill",
  2802. "portable",
  2803. "shim"
  2804. ],
  2805. "time": "2015-11-04T20:28:58+00:00"
  2806. },
  2807. {
  2808. "name": "symfony/polyfill-php70",
  2809. "version": "v1.0.0",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://github.com/symfony/polyfill-php70.git",
  2813. "reference": "7f7f3c9c2b9f17722e0cd64fdb4f957330c53146"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/7f7f3c9c2b9f17722e0cd64fdb4f957330c53146",
  2818. "reference": "7f7f3c9c2b9f17722e0cd64fdb4f957330c53146",
  2819. "shasum": ""
  2820. },
  2821. "require": {
  2822. "paragonie/random_compat": "~1.0",
  2823. "php": ">=5.3.3"
  2824. },
  2825. "type": "library",
  2826. "extra": {
  2827. "branch-alias": {
  2828. "dev-master": "1.0-dev"
  2829. }
  2830. },
  2831. "autoload": {
  2832. "psr-4": {
  2833. "Symfony\\Polyfill\\Php70\\": ""
  2834. },
  2835. "files": [
  2836. "bootstrap.php"
  2837. ],
  2838. "classmap": [
  2839. "Resources/stubs"
  2840. ]
  2841. },
  2842. "notification-url": "https://packagist.org/downloads/",
  2843. "license": [
  2844. "MIT"
  2845. ],
  2846. "authors": [
  2847. {
  2848. "name": "Nicolas Grekas",
  2849. "email": "p@tchwork.com"
  2850. },
  2851. {
  2852. "name": "Symfony Community",
  2853. "homepage": "https://symfony.com/contributors"
  2854. }
  2855. ],
  2856. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  2857. "homepage": "https://symfony.com",
  2858. "keywords": [
  2859. "compatibility",
  2860. "polyfill",
  2861. "portable",
  2862. "shim"
  2863. ],
  2864. "time": "2015-11-04T20:28:58+00:00"
  2865. },
  2866. {
  2867. "name": "symfony/polyfill-util",
  2868. "version": "v1.0.0",
  2869. "source": {
  2870. "type": "git",
  2871. "url": "https://github.com/symfony/polyfill-util.git",
  2872. "reference": "4271c55cbc0a77b2641f861b978123e46b3da969"
  2873. },
  2874. "dist": {
  2875. "type": "zip",
  2876. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4271c55cbc0a77b2641f861b978123e46b3da969",
  2877. "reference": "4271c55cbc0a77b2641f861b978123e46b3da969",
  2878. "shasum": ""
  2879. },
  2880. "require": {
  2881. "php": ">=5.3.3"
  2882. },
  2883. "type": "library",
  2884. "extra": {
  2885. "branch-alias": {
  2886. "dev-master": "1.0-dev"
  2887. }
  2888. },
  2889. "autoload": {
  2890. "psr-4": {
  2891. "Symfony\\Polyfill\\Util\\": ""
  2892. }
  2893. },
  2894. "notification-url": "https://packagist.org/downloads/",
  2895. "license": [
  2896. "MIT"
  2897. ],
  2898. "authors": [
  2899. {
  2900. "name": "Nicolas Grekas",
  2901. "email": "p@tchwork.com"
  2902. },
  2903. {
  2904. "name": "Symfony Community",
  2905. "homepage": "https://symfony.com/contributors"
  2906. }
  2907. ],
  2908. "description": "Symfony utilities for portability of PHP codes",
  2909. "homepage": "https://symfony.com",
  2910. "keywords": [
  2911. "compat",
  2912. "compatibility",
  2913. "polyfill",
  2914. "shim"
  2915. ],
  2916. "time": "2015-11-04T20:28:58+00:00"
  2917. },
  2918. {
  2919. "name": "symfony/process",
  2920. "version": "v3.3.0",
  2921. "source": {
  2922. "type": "git",
  2923. "url": "https://github.com/symfony/process.git",
  2924. "reference": "8e30690c67aafb6c7992d6d8eb0d707807dd3eaf"
  2925. },
  2926. "dist": {
  2927. "type": "zip",
  2928. "url": "https://api.github.com/repos/symfony/process/zipball/8e30690c67aafb6c7992d6d8eb0d707807dd3eaf",
  2929. "reference": "8e30690c67aafb6c7992d6d8eb0d707807dd3eaf",
  2930. "shasum": ""
  2931. },
  2932. "require": {
  2933. "php": ">=5.5.9"
  2934. },
  2935. "type": "library",
  2936. "extra": {
  2937. "branch-alias": {
  2938. "dev-master": "3.3-dev"
  2939. }
  2940. },
  2941. "autoload": {
  2942. "psr-4": {
  2943. "Symfony\\Component\\Process\\": ""
  2944. },
  2945. "exclude-from-classmap": [
  2946. "/Tests/"
  2947. ]
  2948. },
  2949. "notification-url": "https://packagist.org/downloads/",
  2950. "license": [
  2951. "MIT"
  2952. ],
  2953. "authors": [
  2954. {
  2955. "name": "Fabien Potencier",
  2956. "email": "fabien@symfony.com"
  2957. },
  2958. {
  2959. "name": "Symfony Community",
  2960. "homepage": "https://symfony.com/contributors"
  2961. }
  2962. ],
  2963. "description": "Symfony Process Component",
  2964. "homepage": "https://symfony.com",
  2965. "time": "2017-05-22T12:32:03+00:00"
  2966. },
  2967. {
  2968. "name": "symfony/property-access",
  2969. "version": "v2.8.0",
  2970. "source": {
  2971. "type": "git",
  2972. "url": "https://github.com/symfony/property-access.git",
  2973. "reference": "8820a541404c43838c113d6d7580bd02e0ba198a"
  2974. },
  2975. "dist": {
  2976. "type": "zip",
  2977. "url": "https://api.github.com/repos/symfony/property-access/zipball/8820a541404c43838c113d6d7580bd02e0ba198a",
  2978. "reference": "8820a541404c43838c113d6d7580bd02e0ba198a",
  2979. "shasum": ""
  2980. },
  2981. "require": {
  2982. "php": ">=5.3.9"
  2983. },
  2984. "type": "library",
  2985. "extra": {
  2986. "branch-alias": {
  2987. "dev-master": "2.8-dev"
  2988. }
  2989. },
  2990. "autoload": {
  2991. "psr-4": {
  2992. "Symfony\\Component\\PropertyAccess\\": ""
  2993. },
  2994. "exclude-from-classmap": [
  2995. "/Tests/"
  2996. ]
  2997. },
  2998. "notification-url": "https://packagist.org/downloads/",
  2999. "license": [
  3000. "MIT"
  3001. ],
  3002. "authors": [
  3003. {
  3004. "name": "Fabien Potencier",
  3005. "email": "fabien@symfony.com"
  3006. },
  3007. {
  3008. "name": "Symfony Community",
  3009. "homepage": "https://symfony.com/contributors"
  3010. }
  3011. ],
  3012. "description": "Symfony PropertyAccess Component",
  3013. "homepage": "https://symfony.com",
  3014. "keywords": [
  3015. "access",
  3016. "array",
  3017. "extraction",
  3018. "index",
  3019. "injection",
  3020. "object",
  3021. "property",
  3022. "property path",
  3023. "reflection"
  3024. ],
  3025. "time": "2015-11-18T13:45:00+00:00"
  3026. },
  3027. {
  3028. "name": "symfony/routing",
  3029. "version": "v3.0.0",
  3030. "source": {
  3031. "type": "git",
  3032. "url": "https://github.com/symfony/routing.git",
  3033. "reference": "252014dfa4685e80f9216ae4b7d78b1a50dd55c2"
  3034. },
  3035. "dist": {
  3036. "type": "zip",
  3037. "url": "https://api.github.com/repos/symfony/routing/zipball/252014dfa4685e80f9216ae4b7d78b1a50dd55c2",
  3038. "reference": "252014dfa4685e80f9216ae4b7d78b1a50dd55c2",
  3039. "shasum": ""
  3040. },
  3041. "require": {
  3042. "php": ">=5.5.9"
  3043. },
  3044. "conflict": {
  3045. "symfony/config": "<2.8"
  3046. },
  3047. "require-dev": {
  3048. "doctrine/annotations": "~1.0",
  3049. "doctrine/common": "~2.2",
  3050. "psr/log": "~1.0",
  3051. "symfony/config": "~2.8|~3.0",
  3052. "symfony/expression-language": "~2.8|~3.0",
  3053. "symfony/http-foundation": "~2.8|~3.0",
  3054. "symfony/yaml": "~2.8|~3.0"
  3055. },
  3056. "suggest": {
  3057. "doctrine/annotations": "For using the annotation loader",
  3058. "symfony/config": "For using the all-in-one router or any loader",
  3059. "symfony/dependency-injection": "For loading routes from a service",
  3060. "symfony/expression-language": "For using expression matching",
  3061. "symfony/yaml": "For using the YAML loader"
  3062. },
  3063. "type": "library",
  3064. "extra": {
  3065. "branch-alias": {
  3066. "dev-master": "3.0-dev"
  3067. }
  3068. },
  3069. "autoload": {
  3070. "psr-4": {
  3071. "Symfony\\Component\\Routing\\": ""
  3072. },
  3073. "exclude-from-classmap": [
  3074. "/Tests/"
  3075. ]
  3076. },
  3077. "notification-url": "https://packagist.org/downloads/",
  3078. "license": [
  3079. "MIT"
  3080. ],
  3081. "authors": [
  3082. {
  3083. "name": "Fabien Potencier",
  3084. "email": "fabien@symfony.com"
  3085. },
  3086. {
  3087. "name": "Symfony Community",
  3088. "homepage": "https://symfony.com/contributors"
  3089. }
  3090. ],
  3091. "description": "Symfony Routing Component",
  3092. "homepage": "https://symfony.com",
  3093. "keywords": [
  3094. "router",
  3095. "routing",
  3096. "uri",
  3097. "url"
  3098. ],
  3099. "time": "2015-11-26T07:02:09+00:00"
  3100. },
  3101. {
  3102. "name": "symfony/security",
  3103. "version": "v3.0.0",
  3104. "source": {
  3105. "type": "git",
  3106. "url": "https://github.com/symfony/security.git",
  3107. "reference": "82f83d99b1756d085746aa0c4dae800d9c6ef37d"
  3108. },
  3109. "dist": {
  3110. "type": "zip",
  3111. "url": "https://api.github.com/repos/symfony/security/zipball/82f83d99b1756d085746aa0c4dae800d9c6ef37d",
  3112. "reference": "82f83d99b1756d085746aa0c4dae800d9c6ef37d",
  3113. "shasum": ""
  3114. },
  3115. "require": {
  3116. "php": ">=5.5.9",
  3117. "symfony/event-dispatcher": "~2.8|~3.0",
  3118. "symfony/http-foundation": "~2.8|~3.0",
  3119. "symfony/http-kernel": "~2.8|~3.0",
  3120. "symfony/polyfill-php56": "~1.0",
  3121. "symfony/polyfill-php70": "~1.0",
  3122. "symfony/polyfill-util": "~1.0",
  3123. "symfony/property-access": "~2.8|~3.0"
  3124. },
  3125. "replace": {
  3126. "symfony/security-core": "self.version",
  3127. "symfony/security-csrf": "self.version",
  3128. "symfony/security-guard": "self.version",
  3129. "symfony/security-http": "self.version"
  3130. },
  3131. "require-dev": {
  3132. "psr/log": "~1.0",
  3133. "symfony/expression-language": "~2.8|~3.0",
  3134. "symfony/finder": "~2.8|~3.0",
  3135. "symfony/ldap": "~2.8|~3.0",
  3136. "symfony/polyfill-intl-icu": "~1.0",
  3137. "symfony/routing": "~2.8|~3.0",
  3138. "symfony/validator": "~2.8|~3.0"
  3139. },
  3140. "suggest": {
  3141. "symfony/expression-language": "For using the expression voter",
  3142. "symfony/form": "",
  3143. "symfony/ldap": "For using the LDAP user and authentication providers",
  3144. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  3145. "symfony/validator": "For using the user password constraint"
  3146. },
  3147. "type": "library",
  3148. "extra": {
  3149. "branch-alias": {
  3150. "dev-master": "3.0-dev"
  3151. }
  3152. },
  3153. "autoload": {
  3154. "psr-4": {
  3155. "Symfony\\Component\\Security\\": ""
  3156. },
  3157. "exclude-from-classmap": [
  3158. "/Tests/"
  3159. ]
  3160. },
  3161. "notification-url": "https://packagist.org/downloads/",
  3162. "license": [
  3163. "MIT"
  3164. ],
  3165. "authors": [
  3166. {
  3167. "name": "Fabien Potencier",
  3168. "email": "fabien@symfony.com"
  3169. },
  3170. {
  3171. "name": "Symfony Community",
  3172. "homepage": "https://symfony.com/contributors"
  3173. }
  3174. ],
  3175. "description": "Symfony Security Component",
  3176. "homepage": "https://symfony.com",
  3177. "time": "2015-11-30T12:36:17+00:00"
  3178. },
  3179. {
  3180. "name": "symfony/security-acl",
  3181. "version": "v2.8.0",
  3182. "source": {
  3183. "type": "git",
  3184. "url": "https://github.com/symfony/security-acl.git",
  3185. "reference": "4a3f7327ad215242c78f6564ad4ea6d2db1b8347"
  3186. },
  3187. "dist": {
  3188. "type": "zip",
  3189. "url": "https://api.github.com/repos/symfony/security-acl/zipball/4a3f7327ad215242c78f6564ad4ea6d2db1b8347",
  3190. "reference": "4a3f7327ad215242c78f6564ad4ea6d2db1b8347",
  3191. "shasum": ""
  3192. },
  3193. "require": {
  3194. "php": ">=5.3.9",
  3195. "symfony/security-core": "~2.4|~3.0.0"
  3196. },
  3197. "require-dev": {
  3198. "doctrine/common": "~2.2",
  3199. "doctrine/dbal": "~2.2",
  3200. "psr/log": "~1.0",
  3201. "symfony/phpunit-bridge": "~2.7|~3.0.0"
  3202. },
  3203. "suggest": {
  3204. "doctrine/dbal": "For using the built-in ACL implementation",
  3205. "symfony/class-loader": "For using the ACL generateSql script",
  3206. "symfony/finder": "For using the ACL generateSql script"
  3207. },
  3208. "type": "library",
  3209. "extra": {
  3210. "branch-alias": {
  3211. "dev-master": "2.8-dev"
  3212. }
  3213. },
  3214. "autoload": {
  3215. "psr-4": {
  3216. "Symfony\\Component\\Security\\Acl\\": ""
  3217. },
  3218. "exclude-from-classmap": [
  3219. "/Tests/"
  3220. ]
  3221. },
  3222. "notification-url": "https://packagist.org/downloads/",
  3223. "license": [
  3224. "MIT"
  3225. ],
  3226. "authors": [
  3227. {
  3228. "name": "Fabien Potencier",
  3229. "email": "fabien@symfony.com"
  3230. },
  3231. {
  3232. "name": "Symfony Community",
  3233. "homepage": "https://symfony.com/contributors"
  3234. }
  3235. ],
  3236. "description": "Symfony Security Component - ACL (Access Control List)",
  3237. "homepage": "https://symfony.com",
  3238. "time": "2015-12-28T09:39:09+00:00"
  3239. },
  3240. {
  3241. "name": "symfony/security-bundle",
  3242. "version": "v2.8.0",
  3243. "source": {
  3244. "type": "git",
  3245. "url": "https://github.com/symfony/security-bundle.git",
  3246. "reference": "796de74e3bc9ad5198fee406c047d90da65332d4"
  3247. },
  3248. "dist": {
  3249. "type": "zip",
  3250. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/796de74e3bc9ad5198fee406c047d90da65332d4",
  3251. "reference": "796de74e3bc9ad5198fee406c047d90da65332d4",
  3252. "shasum": ""
  3253. },
  3254. "require": {
  3255. "php": ">=5.3.9",
  3256. "symfony/http-kernel": "~2.2|~3.0.0",
  3257. "symfony/polyfill-php70": "~1.0",
  3258. "symfony/security": "~2.8|~3.0.0",
  3259. "symfony/security-acl": "~2.7|~3.0.0"
  3260. },
  3261. "require-dev": {
  3262. "doctrine/doctrine-bundle": "~1.2",
  3263. "symfony/browser-kit": "~2.4|~3.0.0",
  3264. "symfony/console": "~2.7|~3.0.0",
  3265. "symfony/css-selector": "~2.0,>=2.0.5|~3.0.0",
  3266. "symfony/dom-crawler": "~2.0,>=2.0.5|~3.0.0",
  3267. "symfony/expression-language": "~2.6|~3.0.0",
  3268. "symfony/form": "~2.8",
  3269. "symfony/framework-bundle": "~2.8",
  3270. "symfony/http-foundation": "~2.4|~3.0.0",
  3271. "symfony/process": "~2.0,>=2.0.5|~3.0.0",
  3272. "symfony/twig-bridge": "~2.7|~3.0.0",
  3273. "symfony/twig-bundle": "~2.7|~3.0.0",
  3274. "symfony/validator": "~2.5|~3.0.0",
  3275. "symfony/yaml": "~2.0,>=2.0.5|~3.0.0",
  3276. "twig/twig": "~1.23|~2.0"
  3277. },
  3278. "type": "symfony-bundle",
  3279. "extra": {
  3280. "branch-alias": {
  3281. "dev-master": "2.8-dev"
  3282. }
  3283. },
  3284. "autoload": {
  3285. "psr-4": {
  3286. "Symfony\\Bundle\\SecurityBundle\\": ""
  3287. },
  3288. "exclude-from-classmap": [
  3289. "/Tests/"
  3290. ]
  3291. },
  3292. "notification-url": "https://packagist.org/downloads/",
  3293. "license": [
  3294. "MIT"
  3295. ],
  3296. "authors": [
  3297. {
  3298. "name": "Fabien Potencier",
  3299. "email": "fabien@symfony.com"
  3300. },
  3301. {
  3302. "name": "Symfony Community",
  3303. "homepage": "https://symfony.com/contributors"
  3304. }
  3305. ],
  3306. "description": "Symfony SecurityBundle",
  3307. "homepage": "https://symfony.com",
  3308. "time": "2015-11-29T08:13:21+00:00"
  3309. },
  3310. {
  3311. "name": "symfony/serializer",
  3312. "version": "v2.3.0",
  3313. "target-dir": "Symfony/Component/Serializer",
  3314. "source": {
  3315. "type": "git",
  3316. "url": "https://github.com/symfony/serializer.git",
  3317. "reference": "d23de6091ff0fa618e901c296ee98ebaa80f6120"
  3318. },
  3319. "dist": {
  3320. "type": "zip",
  3321. "url": "https://api.github.com/repos/symfony/serializer/zipball/d23de6091ff0fa618e901c296ee98ebaa80f6120",
  3322. "reference": "d23de6091ff0fa618e901c296ee98ebaa80f6120",
  3323. "shasum": ""
  3324. },
  3325. "require": {
  3326. "php": ">=5.3.3"
  3327. },
  3328. "type": "library",
  3329. "extra": {
  3330. "branch-alias": {
  3331. "dev-master": "2.3-dev"
  3332. }
  3333. },
  3334. "autoload": {
  3335. "psr-0": {
  3336. "Symfony\\Component\\Serializer\\": ""
  3337. }
  3338. },
  3339. "notification-url": "https://packagist.org/downloads/",
  3340. "license": [
  3341. "MIT"
  3342. ],
  3343. "authors": [
  3344. {
  3345. "name": "Symfony Community",
  3346. "homepage": "http://symfony.com/contributors"
  3347. },
  3348. {
  3349. "name": "Fabien Potencier",
  3350. "email": "fabien@symfony.com"
  3351. }
  3352. ],
  3353. "description": "Symfony Serializer Component",
  3354. "homepage": "http://symfony.com",
  3355. "time": "2013-05-10T18:12:13+00:00"
  3356. },
  3357. {
  3358. "name": "symfony/stopwatch",
  3359. "version": "v2.8.0",
  3360. "source": {
  3361. "type": "git",
  3362. "url": "https://github.com/symfony/stopwatch.git",
  3363. "reference": "5f1e2ebd1044da542d2b9510527836e8be92b1cb"
  3364. },
  3365. "dist": {
  3366. "type": "zip",
  3367. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5f1e2ebd1044da542d2b9510527836e8be92b1cb",
  3368. "reference": "5f1e2ebd1044da542d2b9510527836e8be92b1cb",
  3369. "shasum": ""
  3370. },
  3371. "require": {
  3372. "php": ">=5.3.9"
  3373. },
  3374. "type": "library",
  3375. "extra": {
  3376. "branch-alias": {
  3377. "dev-master": "2.8-dev"
  3378. }
  3379. },
  3380. "autoload": {
  3381. "psr-4": {
  3382. "Symfony\\Component\\Stopwatch\\": ""
  3383. },
  3384. "exclude-from-classmap": [
  3385. "/Tests/"
  3386. ]
  3387. },
  3388. "notification-url": "https://packagist.org/downloads/",
  3389. "license": [
  3390. "MIT"
  3391. ],
  3392. "authors": [
  3393. {
  3394. "name": "Fabien Potencier",
  3395. "email": "fabien@symfony.com"
  3396. },
  3397. {
  3398. "name": "Symfony Community",
  3399. "homepage": "https://symfony.com/contributors"
  3400. }
  3401. ],
  3402. "description": "Symfony Stopwatch Component",
  3403. "homepage": "https://symfony.com",
  3404. "time": "2015-10-30T20:15:42+00:00"
  3405. },
  3406. {
  3407. "name": "symfony/templating",
  3408. "version": "v2.8.0",
  3409. "source": {
  3410. "type": "git",
  3411. "url": "https://github.com/symfony/templating.git",
  3412. "reference": "d4b3ae6d9045b2f1e4904ae0ba6946afb493d637"
  3413. },
  3414. "dist": {
  3415. "type": "zip",
  3416. "url": "https://api.github.com/repos/symfony/templating/zipball/d4b3ae6d9045b2f1e4904ae0ba6946afb493d637",
  3417. "reference": "d4b3ae6d9045b2f1e4904ae0ba6946afb493d637",
  3418. "shasum": ""
  3419. },
  3420. "require": {
  3421. "php": ">=5.3.9"
  3422. },
  3423. "require-dev": {
  3424. "psr/log": "~1.0"
  3425. },
  3426. "suggest": {
  3427. "psr/log": "For using debug logging in loaders"
  3428. },
  3429. "type": "library",
  3430. "extra": {
  3431. "branch-alias": {
  3432. "dev-master": "2.8-dev"
  3433. }
  3434. },
  3435. "autoload": {
  3436. "psr-4": {
  3437. "Symfony\\Component\\Templating\\": ""
  3438. },
  3439. "exclude-from-classmap": [
  3440. "/Tests/"
  3441. ]
  3442. },
  3443. "notification-url": "https://packagist.org/downloads/",
  3444. "license": [
  3445. "MIT"
  3446. ],
  3447. "authors": [
  3448. {
  3449. "name": "Fabien Potencier",
  3450. "email": "fabien@symfony.com"
  3451. },
  3452. {
  3453. "name": "Symfony Community",
  3454. "homepage": "https://symfony.com/contributors"
  3455. }
  3456. ],
  3457. "description": "Symfony Templating Component",
  3458. "homepage": "https://symfony.com",
  3459. "time": "2015-11-18T13:45:00+00:00"
  3460. },
  3461. {
  3462. "name": "symfony/translation",
  3463. "version": "v2.8.0",
  3464. "source": {
  3465. "type": "git",
  3466. "url": "https://github.com/symfony/translation.git",
  3467. "reference": "6772657767649fc3b31df12705194fb4af11ef98"
  3468. },
  3469. "dist": {
  3470. "type": "zip",
  3471. "url": "https://api.github.com/repos/symfony/translation/zipball/6772657767649fc3b31df12705194fb4af11ef98",
  3472. "reference": "6772657767649fc3b31df12705194fb4af11ef98",
  3473. "shasum": ""
  3474. },
  3475. "require": {
  3476. "php": ">=5.3.9",
  3477. "symfony/polyfill-mbstring": "~1.0"
  3478. },
  3479. "conflict": {
  3480. "symfony/config": "<2.7"
  3481. },
  3482. "require-dev": {
  3483. "psr/log": "~1.0",
  3484. "symfony/config": "~2.8",
  3485. "symfony/intl": "~2.4|~3.0.0",
  3486. "symfony/yaml": "~2.2|~3.0.0"
  3487. },
  3488. "suggest": {
  3489. "psr/log": "To use logging capability in translator",
  3490. "symfony/config": "",
  3491. "symfony/yaml": ""
  3492. },
  3493. "type": "library",
  3494. "extra": {
  3495. "branch-alias": {
  3496. "dev-master": "2.8-dev"
  3497. }
  3498. },
  3499. "autoload": {
  3500. "psr-4": {
  3501. "Symfony\\Component\\Translation\\": ""
  3502. },
  3503. "exclude-from-classmap": [
  3504. "/Tests/"
  3505. ]
  3506. },
  3507. "notification-url": "https://packagist.org/downloads/",
  3508. "license": [
  3509. "MIT"
  3510. ],
  3511. "authors": [
  3512. {
  3513. "name": "Fabien Potencier",
  3514. "email": "fabien@symfony.com"
  3515. },
  3516. {
  3517. "name": "Symfony Community",
  3518. "homepage": "https://symfony.com/contributors"
  3519. }
  3520. ],
  3521. "description": "Symfony Translation Component",
  3522. "homepage": "https://symfony.com",
  3523. "time": "2015-11-18T13:45:00+00:00"
  3524. },
  3525. {
  3526. "name": "symfony/yaml",
  3527. "version": "v3.3.0",
  3528. "source": {
  3529. "type": "git",
  3530. "url": "https://github.com/symfony/yaml.git",
  3531. "reference": "885db865f6b2b918404a1fae28f9ac640f71f994"
  3532. },
  3533. "dist": {
  3534. "type": "zip",
  3535. "url": "https://api.github.com/repos/symfony/yaml/zipball/885db865f6b2b918404a1fae28f9ac640f71f994",
  3536. "reference": "885db865f6b2b918404a1fae28f9ac640f71f994",
  3537. "shasum": ""
  3538. },
  3539. "require": {
  3540. "php": ">=5.5.9"
  3541. },
  3542. "require-dev": {
  3543. "symfony/console": "~2.8|~3.0"
  3544. },
  3545. "suggest": {
  3546. "symfony/console": "For validating YAML files using the lint command"
  3547. },
  3548. "type": "library",
  3549. "extra": {
  3550. "branch-alias": {
  3551. "dev-master": "3.3-dev"
  3552. }
  3553. },
  3554. "autoload": {
  3555. "psr-4": {
  3556. "Symfony\\Component\\Yaml\\": ""
  3557. },
  3558. "exclude-from-classmap": [
  3559. "/Tests/"
  3560. ]
  3561. },
  3562. "notification-url": "https://packagist.org/downloads/",
  3563. "license": [
  3564. "MIT"
  3565. ],
  3566. "authors": [
  3567. {
  3568. "name": "Fabien Potencier",
  3569. "email": "fabien@symfony.com"
  3570. },
  3571. {
  3572. "name": "Symfony Community",
  3573. "homepage": "https://symfony.com/contributors"
  3574. }
  3575. ],
  3576. "description": "Symfony Yaml Component",
  3577. "homepage": "https://symfony.com",
  3578. "time": "2017-05-28T10:56:20+00:00"
  3579. }
  3580. ],
  3581. "packages-dev": [],
  3582. "aliases": [],
  3583. "minimum-stability": "stable",
  3584. "stability-flags": {
  3585. "ik/php-docker-lib": 20
  3586. },
  3587. "prefer-stable": false,
  3588. "prefer-lowest": true,
  3589. "platform": [],
  3590. "platform-dev": []
  3591. }