File tree Expand file tree Collapse file tree 4 files changed +33
-16
lines changed Expand file tree Collapse file tree 4 files changed +33
-16
lines changed Original file line number Diff line number Diff line change 1
- .idea
1
+ / .idea
2
2
/vendor
3
- composer.lock
3
+ /composer.lock
4
+ /.phpunit.result.cache
Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
3
php :
4
- - 7.1
5
4
- 7.2
6
5
- 7.3
7
6
8
7
install : composer install --dev --no-interaction
9
8
10
9
script :
11
10
- vendor/bin/phpunit --coverage-clover=coverage.xml
12
- - composer stan
11
+ - vendor/bin/phpstan analyse --memory-limit=2048M
13
12
14
13
after_success :
15
14
- bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
+
8
+ You can find and compare releases at the [ GitHub release page] ( https://github.com/nuwave/lighthouse/releases ) .
9
+
10
+ ## Unreleased
11
+
12
+ ## 3.0.0
13
+
14
+ ### Changed
15
+
16
+ - Bump dependencies of various packages
17
+
18
+ ### Removed
19
+
20
+ - Remove support for PHP 7.1
Original file line number Diff line number Diff line change 11
11
}
12
12
],
13
13
"require" : {
14
- "php" : " >=7.1 " ,
15
- "webonyx/graphql-php" : " ^0.13" ,
16
- "spatie/regex" : " ^1.3 " ,
17
- "egulias/email-validator" : " ^2.1" ,
18
- "thecodingmachine/safe" : " ^0.1.14 "
14
+ "php" : " >=7.2 " ,
15
+ "webonyx/graphql-php" : " ^0.13.8 " ,
16
+ "spatie/regex" : " ^1.4.1 " ,
17
+ "egulias/email-validator" : " ^2.1.17 " ,
18
+ "thecodingmachine/safe" : " ^1.0.3 "
19
19
},
20
20
"require-dev" : {
21
21
"ext-json" : " *" ,
22
- "phpunit/phpunit" : " ^7.3" ,
23
- "psy/psysh" : " ^0.9.8" ,
24
- "phpstan/phpstan" : " ^0.11.15"
22
+ "phpunit/phpunit" : " ^8.5.2" ,
23
+ "psy/psysh" : " ^0.9.12" ,
24
+ "phpstan/phpstan" : " ^0.12.11" ,
25
+ "thecodingmachine/phpstan-safe-rule" : " ^1.0.0"
25
26
},
26
27
"autoload" : {
27
28
"files" : [
35
36
"psr-4" : {
36
37
"Tests\\ " : " tests/"
37
38
}
38
- },
39
- "scripts" : {
40
- "test" : " phpunit" ,
41
- "stan" : " phpstan analyse"
42
39
}
43
40
}
You can’t perform that action at this time.
0 commit comments