File tree Expand file tree Collapse file tree 6 files changed +23
-33
lines changed Expand file tree Collapse file tree 6 files changed +23
-33
lines changed Original file line number Diff line number Diff line change
1
+ - 3.0.0
2
+ - No changes
3
+
1
4
- 3.0.0-beta
2
5
- Add support for PHP 8.0 in the extension
3
6
- Drop extension support for PHP 7.2 and 7.3
Original file line number Diff line number Diff line change 34
34
"phpstan/extension-installer" : " ^1.0" ,
35
35
"phpstan/phpstan" : " 0.12.*" ,
36
36
"phpstan/phpstan-phpunit" : " 0.12.*" ,
37
- "phpunit/phpunit" : " 8.5.* "
37
+ "phpunit/phpunit" : " ^9.0 "
38
38
},
39
39
"autoload" : {
40
40
"psr-4" : {
Original file line number Diff line number Diff line change 4
4
"extension-name" : " tensor" ,
5
5
"description" : " A library and extension that provides objects for scientific computing in PHP." ,
6
6
"author" : " Andrew DalPino" ,
7
- "version" : " 3.0.0-beta " ,
7
+ "version" : " 3.0.0" ,
8
8
"verbose" : true ,
9
9
"extra-cflags" : " -O3 -ffast-math" ,
10
10
"extra-libs" : " -lopenblas -llapacke -lgfortran" ,
Original file line number Diff line number Diff line change 11
11
#include "kernel/globals.h"
12
12
13
13
#define PHP_TENSOR_NAME "tensor"
14
- #define PHP_TENSOR_VERSION "3.0.0-beta "
14
+ #define PHP_TENSOR_VERSION "3.0.0"
15
15
#define PHP_TENSOR_EXTNAME "tensor"
16
16
#define PHP_TENSOR_AUTHOR "Andrew DalPino"
17
17
#define PHP_TENSOR_ZEPVERSION "0.13.5-$Id$"
Original file line number Diff line number Diff line change 16
16
<api >3.0</api >
17
17
</version >
18
18
<stability >
19
- <release >beta </release >
20
- <api >beta </api >
19
+ <release >stable </release >
20
+ <api >stable </api >
21
21
</stability >
22
22
<license uri =" https://github.com/RubixML/Tensor/blob/master/LICENSE" >MIT</license >
23
23
<notes >
24
- - Extension now compatible with PHP 7.4 and 8.0+
25
- - Drop extension support for PHP 7.2 and 7.3
26
- - Tensors only compute floating point operations
27
- - Matrix returns vector on row access
28
- - Removed deprecated methods
24
+ - No changes
29
25
</notes >
30
26
<contents >
31
27
<dir name =" /" >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
3
- backupStaticAttributes =" false"
4
- bootstrap =" vendor/autoload.php"
5
- colors =" true"
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
- forceCoversAnnotation =" true"
10
- processIsolation =" false"
11
- stopOnFailure =" false" >
12
- <testsuites >
13
- <testsuite name =" Base" >
14
- <directory >tests</directory >
15
- </testsuite >
16
- </testsuites >
17
- <filter >
18
- <whitelist processUncoveredFilesFromWhitelist =" true" >
19
- <directory suffix =" .php" >src</directory >
20
- </whitelist >
21
- </filter >
22
- <php >
23
- <env name =" ENV" value =" testing" />
24
- </php >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" backupGlobals =" false" backupStaticAttributes =" false" bootstrap =" vendor/autoload.php" colors =" true" convertErrorsToExceptions =" true" convertNoticesToExceptions =" true" convertWarningsToExceptions =" true" forceCoversAnnotation =" true" processIsolation =" false" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
3
+ <coverage processUncoveredFiles =" true" >
4
+ <include >
5
+ <directory suffix =" .php" >src</directory >
6
+ </include >
7
+ </coverage >
8
+ <testsuites >
9
+ <testsuite name =" Base" >
10
+ <directory >tests</directory >
11
+ </testsuite >
12
+ </testsuites >
13
+ <php >
14
+ <env name =" ENV" value =" testing" />
15
+ </php >
25
16
</phpunit >
You can’t perform that action at this time.
0 commit comments