Skip to content

Commit 41984df

Browse files
committed
WIP
1 parent bda5de1 commit 41984df

File tree

2 files changed

+20
-21
lines changed

2 files changed

+20
-21
lines changed

composer.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@
2020
],
2121
"require": {
2222
"php": "^8.2",
23-
"guzzlehttp/guzzle": "^7.5",
24-
"illuminate/contracts": "^10.0",
25-
"spatie/laravel-package-tools": "^1.9.2",
26-
"cloudinary/cloudinary_php": "^2.10.0",
27-
"nesbot/carbon": "^2.64.0"
23+
"guzzlehttp/guzzle": "^7.7.0",
24+
"illuminate/contracts": "^10.19",
25+
"spatie/laravel-package-tools": "^1.16.0",
26+
"cloudinary/cloudinary_php": "^2.11.0",
27+
"nesbot/carbon": "^2.69.0"
2828
},
2929
"require-dev": {
30-
"laravel/pint": "^1.0",
31-
"nunomaduro/collision": "^7.9",
32-
"nunomaduro/larastan": "^2.0.1",
33-
"orchestra/testbench": "^8.0",
34-
"pestphp/pest": "^2.0",
35-
"pestphp/pest-plugin-arch": "^2.0",
36-
"pestphp/pest-plugin-laravel": "^2.0",
37-
"phpstan/extension-installer": "^1.1",
38-
"phpstan/phpstan-deprecation-rules": "^1.0",
39-
"phpstan/phpstan-phpunit": "^1.0",
40-
"spatie/laravel-ray": "^1.26"
30+
"laravel/pint": "^1.11",
31+
"nunomaduro/collision": "^7.8.1",
32+
"nunomaduro/larastan": "^2.6.4",
33+
"orchestra/testbench": "^8.9",
34+
"pestphp/pest": "^2.16",
35+
"pestphp/pest-plugin-arch": "^2.3.3",
36+
"pestphp/pest-plugin-laravel": "^2.2.0",
37+
"phpstan/extension-installer": "^1.3.1",
38+
"phpstan/phpstan-deprecation-rules": "^1.1.4",
39+
"phpstan/phpstan-phpunit": "^1.3.13",
40+
"spatie/laravel-ray": "^1.32.6"
4141
},
4242
"autoload": {
4343
"psr-4": {
@@ -69,6 +69,6 @@
6969
]
7070
}
7171
},
72-
"minimum-stability": "dev",
72+
"minimum-stability": "stable",
7373
"prefer-stable": true
7474
}

tests/ArchTest.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22

3-
test('it will not use any debug function')
4-
->expect(['dd', 'ray', 'dump'])
5-
->not()
6-
->toBeUsed();
3+
it('will not use debugging functions')
4+
->expect(['dd', 'dump', 'ray'])
5+
->each->not->toBeUsed();

0 commit comments

Comments
 (0)