Commit b19c276 1 parent ae60876 commit b19c276 Copy full SHA for b19c276
File tree 16 files changed +18
-18
lines changed
16 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 19
19
runs-on : ubuntu-latest
20
20
21
21
steps :
22
- - uses : actions/checkout@v3
22
+ - uses : actions/checkout@v4
23
23
24
24
- name : Setup PHP
25
25
uses : shivammathur/setup-php@v2
32
32
33
33
- name : Cache Composer packages
34
34
id : composer-cache
35
- uses : actions/cache@v3
35
+ uses : actions/cache@v4
36
36
with :
37
37
path : vendor
38
38
key : ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
46
46
run : composer run-script test
47
47
48
48
- name : Upload artifacts
49
- uses : actions/upload-artifact@v3
49
+ uses : actions/upload-artifact@v4
50
50
with :
51
51
name : test-report
52
52
path : review/
Original file line number Diff line number Diff line change 1
1
BSD 3-Clause License
2
2
3
- Copyright (c) 2022 Random-Host.tv
3
+ Copyright (c) 2024 Random-Host.tv
4
4
All rights reserved.
5
5
6
6
Redistribution and use in source and binary forms, with or without
Original file line number Diff line number Diff line change 20
20
}
21
21
},
22
22
"require" : {
23
- "php" : " >= 7.3.0 " ,
23
+ "php" : " ~ 7.3" ,
24
24
"randomhost/image" : " ~2.0" ,
25
25
"ext-mbstring" : " *"
26
26
},
Original file line number Diff line number Diff line change 8
8
* Provides methods for retrieving data from the Steam Web API.
9
9
*
10
10
* @author Ch'Ih-Yu <chi-yu@web.de>
11
- * @copyright 2022 Random-Host.tv
11
+ * @copyright 2024 Random-Host.tv
12
12
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
13
13
*
14
14
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 8
8
* Represents private Steam user game data.
9
9
*
10
10
* @author Ch'Ih-Yu <chi-yu@web.de>
11
- * @copyright 2022 Random-Host.tv
11
+ * @copyright 2024 Random-Host.tv
12
12
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
13
13
*
14
14
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 8
8
* Represents public Steam user data.
9
9
*
10
10
* @author Ch'Ih-Yu <chi-yu@web.de>
11
- * @copyright 2022 Random-Host.tv
11
+ * @copyright 2024 Random-Host.tv
12
12
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
13
13
*
14
14
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 8
8
* Represents private Steam user location data.
9
9
*
10
10
* @author Ch'Ih-Yu <chi-yu@web.de>
11
- * @copyright 2022 Random-Host.tv
11
+ * @copyright 2024 Random-Host.tv
12
12
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
13
13
*
14
14
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 8
8
* Represents a Steam user profile available under a 64 bit Steam community id.
9
9
*
10
10
* @author Ch'Ih-Yu <chi-yu@web.de>
11
- * @copyright 2022 Random-Host.tv
11
+ * @copyright 2024 Random-Host.tv
12
12
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
13
13
*
14
14
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 8
8
* Represents private Steam user data.
9
9
*
10
10
* @author Ch'Ih-Yu <chi-yu@web.de>
11
- * @copyright 2022 Random-Host.tv
11
+ * @copyright 2024 Random-Host.tv
12
12
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
13
13
*
14
14
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 13
13
* Main class for displaying the Steam status signature images.
14
14
*
15
15
* @author Ch'Ih-Yu <chi-yu@web.de>
16
- * @copyright 2022 Random-Host.tv
16
+ * @copyright 2024 Random-Host.tv
17
17
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
18
18
*
19
19
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 11
11
* Unit test for {@see Game}.
12
12
*
13
13
* @author Ch'Ih-Yu <chi-yu@web.de>
14
- * @copyright 2022 Random-Host.tv
14
+ * @copyright 2024 Random-Host.tv
15
15
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
16
16
*
17
17
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 11
11
* Unit test for {@see General}.
12
12
*
13
13
* @author Ch'Ih-Yu <chi-yu@web.de>
14
- * @copyright 2022 Random-Host.tv
14
+ * @copyright 2024 Random-Host.tv
15
15
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
16
16
*
17
17
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 11
11
* Unit test for {@see Location}.
12
12
*
13
13
* @author Ch'Ih-Yu <chi-yu@web.de>
14
- * @copyright 2022 Random-Host.tv
14
+ * @copyright 2024 Random-Host.tv
15
15
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
16
16
*
17
17
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 13
13
* Unit test for {@see Profile}.
14
14
*
15
15
* @author Ch'Ih-Yu <chi-yu@web.de>
16
- * @copyright 2022 Random-Host.tv
16
+ * @copyright 2024 Random-Host.tv
17
17
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
18
18
*
19
19
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 13
13
* Unit test for {@see Restricted}.
14
14
*
15
15
* @author Ch'Ih-Yu <chi-yu@web.de>
16
- * @copyright 2022 Random-Host.tv
16
+ * @copyright 2024 Random-Host.tv
17
17
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
18
18
*
19
19
* @see https://github.random-host.tv
Original file line number Diff line number Diff line change 3
3
* Steam Signature test script.
4
4
*
5
5
* @author Ch'Ih-Yu <chi-yu@web.de>
6
- * @copyright 2022 Random-Host.tv
6
+ * @copyright 2024 Random-Host.tv
7
7
* @license https://opensource.org/licenses/BSD-3-Clause BSD License (3 Clause)
8
8
*
9
9
* @see https://github.random-host.tv
You can’t perform that action at this time.
0 commit comments