Skip to content

Commit 82f7589

Browse files
authored
Merge pull request #113 from phenixphp/develop
Release v0.8.0
2 parents 3763191 + 4aa5081 commit 82f7589

528 files changed

Lines changed: 31273 additions & 1743 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
* text=auto eol=lf
2+
3+
*.css diff=css
4+
*.html diff=html
5+
*.md diff=markdown
6+
*.php diff=php
7+
8+
/.github export-ignore
9+
/tests export-ignore
10+
CHANGELOG.md export-ignore
11+
phpstan.neon export-ignore
12+
phpstan-baseline.neon export-ignore
13+
phpunit.xml.dist export-ignore
14+
rector.php export-ignore
15+
sonar-project.properties export-ignore

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for more information:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
# https://containers.dev/guide/dependabot
6+
7+
version: 2
8+
updates:
9+
- package-ecosystem: "devcontainers"
10+
directory: "/"
11+
schedule:
12+
interval: weekly

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@ Thumbs.db
1111
.phpunit.result.cache
1212
.php-cs-fixer.cache
1313
build
14-
tests/fixtures/application/storage/framework/logs/*.log
15-
tests/fixtures/application/storage/framework/views/*.php
1614
.env
15+
knowledge

.php-cs-fixer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@
4646
->setRules($rules)
4747
->setRiskyAllowed(true)
4848
->setUsingCache(true)
49-
->setParallelConfig(ParallelConfigFactory::detect());
49+
->setParallelConfig(ParallelConfigFactory::detect());

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@
2222
"require": {
2323
"php": "^8.2",
2424
"ext-pcntl": "*",
25+
"ext-sockets": "*",
2526
"adbario/php-dot-notation": "^3.1",
2627
"amphp/cache": "^2.0",
28+
"amphp/cluster": "^2.0",
2729
"amphp/file": "^v3.0.0",
2830
"amphp/http-client": "^v5.0.1",
2931
"amphp/http-server": "^v3.2.0",
@@ -36,11 +38,14 @@
3638
"amphp/postgres": "v2.0.0",
3739
"amphp/redis": "^2.0",
3840
"amphp/socket": "^2.1.0",
41+
"dragonmantank/cron-expression": "^3.6",
3942
"egulias/email-validator": "^4.0",
4043
"fakerphp/faker": "^1.23",
44+
"kelunik/rate-limit": "^3.0",
4145
"league/container": "^4.2",
4246
"nesbot/carbon": "^3.0",
4347
"phenixphp/http-cors": "^0.1.0",
48+
"phenixphp/sqlite": "^0.1.1",
4449
"ramsey/collection": "^2.0",
4550
"resend/resend-php": "^0.16.0",
4651
"robmorgan/phinx": "^0.15.2",

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
</logging>
2828
<php>
2929
<env name="APP_NAME" value="Phenix"/>
30-
<env name="APP_ENV" value="testing"/>
30+
<env name="APP_ENV" value="local"/>
3131
</php>
32-
</phpunit>
32+
</phpunit>

0 commit comments

Comments
 (0)