-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
handle empty and null values for php 8.1 (#2182)
* handle empty and null values for php 8.1 * Apply php-cs-fixer changes * changelog * format json [skip ci] --------- Co-authored-by: nadar <nadar@users.noreply.github.com>
- Loading branch information
Showing
5 changed files
with
147 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,82 +1,82 @@ | ||
{ | ||
"name": "luyadev/luya", | ||
"description": "LUYA is a scalable web framework and content management system with the goal to please developers, clients and users alike.", | ||
"type": "project", | ||
"keywords": [ | ||
"php", | ||
"yii2", | ||
"cms", | ||
"luya", | ||
"website", | ||
"content", | ||
"angular", | ||
"modules", | ||
"framework" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://luya.io", | ||
"authors": [ | ||
{ | ||
"name": "Basil Suter", | ||
"email": "git@nadar.io", | ||
"homepage": "https://github.com/nadar" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/luyadev/luya/issues" | ||
}, | ||
"require": { | ||
"luyadev/luya-composer": "^1.0", | ||
"luyadev/yii-helpers": "^1.0", | ||
"yiisoft/yii2": "~2.0.15", | ||
"curl/curl": "^2.0 || ^1.0", | ||
"phpmailer/phpmailer": "^6.0", | ||
"nadar/php-composer-reader": "^1.0", | ||
"cpliakas/git-wrapper": "^1.0 || ^2.0", | ||
"giggsey/libphonenumber-for-php": "^8.11" | ||
}, | ||
"require-dev": { | ||
"luyadev/luya-testsuite": "^2.0", | ||
"nadar/github-markdown-fixer": "^1.0", | ||
"unglue/client": "^1.5", | ||
"friendsofphp/php-cs-fixer": "^3.2", | ||
"phpstan/phpstan": "^1.7", | ||
"rector/rector": "^0.14.2" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"luya\\": "core/", | ||
"luya\\dev\\": "dev", | ||
"luyatests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"asset-installer-paths": { | ||
"bower-asset-library": "vendor/bower" | ||
} | ||
}, | ||
"config": { | ||
"fxp-asset": { | ||
"enabled": false | ||
}, | ||
"allow-plugins": { | ||
"yiisoft/yii2-composer": true, | ||
"luyadev/luya-composer": true | ||
} | ||
}, | ||
"bin": [ | ||
"core/bin/luya", | ||
"dev/luyadev" | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://asset-packagist.org" | ||
} | ||
], | ||
"scripts": { | ||
"phpstan": "vendor/bin/phpstan -v", | ||
"phpcsfixer": "vendor/bin/php-cs-fixer fix", | ||
"rector": "vendor/bin/rector" | ||
} | ||
} | ||
"name": "luyadev/luya", | ||
"description": "LUYA is a scalable web framework and content management system with the goal to please developers, clients and users alike.", | ||
"type": "project", | ||
"keywords": [ | ||
"php", | ||
"yii2", | ||
"cms", | ||
"luya", | ||
"website", | ||
"content", | ||
"angular", | ||
"modules", | ||
"framework" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://luya.io", | ||
"authors": [ | ||
{ | ||
"name": "Basil Suter", | ||
"email": "git@nadar.io", | ||
"homepage": "https://github.com/nadar" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/luyadev/luya/issues" | ||
}, | ||
"require": { | ||
"luyadev/luya-composer": "^1.0", | ||
"luyadev/yii-helpers": "^1.0", | ||
"yiisoft/yii2": "~2.0.15", | ||
"curl/curl": "^2.0 || ^1.0", | ||
"phpmailer/phpmailer": "^6.0", | ||
"nadar/php-composer-reader": "^1.0", | ||
"cpliakas/git-wrapper": "^1.0 || ^2.0", | ||
"giggsey/libphonenumber-for-php": "^8.11" | ||
}, | ||
"require-dev": { | ||
"luyadev/luya-testsuite": "^2.0", | ||
"nadar/github-markdown-fixer": "^1.0", | ||
"unglue/client": "^1.5", | ||
"friendsofphp/php-cs-fixer": "^3.2", | ||
"phpstan/phpstan": "^1.7", | ||
"rector/rector": "^0.14.2" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"luya\\": "core/", | ||
"luya\\dev\\": "dev", | ||
"luyatests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"asset-installer-paths": { | ||
"bower-asset-library": "vendor/bower" | ||
} | ||
}, | ||
"config": { | ||
"fxp-asset": { | ||
"enabled": false | ||
}, | ||
"allow-plugins": { | ||
"yiisoft/yii2-composer": true, | ||
"luyadev/luya-composer": true | ||
} | ||
}, | ||
"bin": [ | ||
"core/bin/luya", | ||
"dev/luyadev" | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://asset-packagist.org" | ||
} | ||
], | ||
"scripts": { | ||
"phpstan": "vendor/bin/phpstan -v", | ||
"phpcsfixer": "vendor/bin/php-cs-fixer fix", | ||
"rector": "vendor/bin/rector" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,56 @@ | ||
{ | ||
"name": "luyadev/luya-core", | ||
"description": "LUYA is a scalable web framework and content management system with the goal to please developers, clients and users alike.", | ||
"type": "luya-core", | ||
"keywords": [ | ||
"luya", | ||
"core", | ||
"yii2", | ||
"yii", | ||
"cms", | ||
"admin" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://luya.io", | ||
"authors": [ | ||
{ | ||
"name": "Basil Suter", | ||
"email": "git@nadar.io", | ||
"homepage": "https://github.com/nadar" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/luyadev/luya/issues" | ||
"name": "luyadev/luya-core", | ||
"description": "LUYA is a scalable web framework and content management system with the goal to please developers, clients and users alike.", | ||
"type": "luya-core", | ||
"keywords": [ | ||
"luya", | ||
"core", | ||
"yii2", | ||
"yii", | ||
"cms", | ||
"admin" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://luya.io", | ||
"authors": [ | ||
{ | ||
"name": "Basil Suter", | ||
"email": "git@nadar.io", | ||
"homepage": "https://github.com/nadar" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/luyadev/luya/issues" | ||
}, | ||
"require": { | ||
"luyadev/luya-composer": "^1.0", | ||
"luyadev/yii-helpers": "^1.0", | ||
"yiisoft/yii2": "~2.0.15", | ||
"curl/curl": "^2.0 || ^1.0", | ||
"phpmailer/phpmailer": "^6.0", | ||
"giggsey/libphonenumber-for-php": "^8.11" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"luya\\": "" | ||
} | ||
}, | ||
"config": { | ||
"fxp-asset": { | ||
"enabled": false | ||
}, | ||
"require": { | ||
"luyadev/luya-composer": "^1.0", | ||
"luyadev/yii-helpers": "^1.0", | ||
"yiisoft/yii2": "~2.0.15", | ||
"curl/curl": "^2.0 || ^1.0", | ||
"phpmailer/phpmailer": "^6.0", | ||
"giggsey/libphonenumber-for-php": "^8.11" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"luya\\": "" | ||
} | ||
}, | ||
"config": { | ||
"fxp-asset": { | ||
"enabled": false | ||
}, | ||
"allow-plugins": { | ||
"yiisoft/yii2-composer": true, | ||
"luyadev/luya-composer": true | ||
} | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://asset-packagist.org" | ||
} | ||
], | ||
"bin": [ | ||
"bin/luya" | ||
] | ||
} | ||
"allow-plugins": { | ||
"yiisoft/yii2-composer": true, | ||
"luyadev/luya-composer": true | ||
} | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://asset-packagist.org" | ||
} | ||
], | ||
"bin": [ | ||
"bin/luya" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters