1
0
mirror of https://github.com/Rogiel/star-replay synced 2025-12-06 06:32:46 +00:00

Initial commit

This commit is contained in:
2016-01-18 21:16:10 -02:00
commit 6c6a46e1cb
237 changed files with 48572 additions and 0 deletions

70
src/Version/Versions.php Normal file
View File

@@ -0,0 +1,70 @@
<?php
/**
* Copyright (c) 2016, Rogiel Sulzbach
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
namespace Rogiel\StarReplay\Version;
class Versions {
public static function getVersions() {
return [
15405 => 'Rogiel\StarReplay\Version\Version15405',
16561 => 'Rogiel\StarReplay\Version\Version16561',
16605 => 'Rogiel\StarReplay\Version\Version16605',
16755 => 'Rogiel\StarReplay\Version\Version16755',
16939 => 'Rogiel\StarReplay\Version\Version16939',
17266 => 'Rogiel\StarReplay\Version\Version17266',
17326 => 'Rogiel\StarReplay\Version\Version17326',
18092 => 'Rogiel\StarReplay\Version\Version18092',
18468 => 'Rogiel\StarReplay\Version\Version18468',
18574 => 'Rogiel\StarReplay\Version\Version18574',
19132 => 'Rogiel\StarReplay\Version\Version19132',
19458 => 'Rogiel\StarReplay\Version\Version19458',
19595 => 'Rogiel\StarReplay\Version\Version19595',
19679 => 'Rogiel\StarReplay\Version\Version19679',
21029 => 'Rogiel\StarReplay\Version\Version21029',
21995 => 'Rogiel\StarReplay\Version\Version21995',
22612 => 'Rogiel\StarReplay\Version\Version22612',
23260 => 'Rogiel\StarReplay\Version\Version23260',
24764 => 'Rogiel\StarReplay\Version\Version24764',
24944 => 'Rogiel\StarReplay\Version\Version24944',
26490 => 'Rogiel\StarReplay\Version\Version26490',
27950 => 'Rogiel\StarReplay\Version\Version27950',
28272 => 'Rogiel\StarReplay\Version\Version28272',
28667 => 'Rogiel\StarReplay\Version\Version28667',
32283 => 'Rogiel\StarReplay\Version\Version32283',
34784 => 'Rogiel\StarReplay\Version\Version34784',
34835 => 'Rogiel\StarReplay\Version\Version34835',
36442 => 'Rogiel\StarReplay\Version\Version36442',
38215 => 'Rogiel\StarReplay\Version\Version38215',
38749 => 'Rogiel\StarReplay\Version\Version38749',
38996 => 'Rogiel\StarReplay\Version\Version38996',
39576 => 'Rogiel\StarReplay\Version\Version39576'
];
}
}