1
0
Fork 0
mirror of https://github.com/archtechx/virtualcolumn.git synced 2025-12-12 14:34:04 +00:00
virtualcolumn/composer.json
lukinovec 0b108903b5
Add L10 support, remove L6 and L8 support (#11)
* Add L10 support

* Update PHP version in ci.yml

* Update ci.yml

* Revert ci.yml changes

* Migrate PHPUnit XML config using "--migrate-configuration"

* Update phpunit.xml (delete cacheDirectory, use backupStaticAttributes instead of backupStaticProperties)

* Delete backupStaticAttributes

* Add PHP version matrix

* Use ci.yml from #12

* Correct Laravel matrix versions

* Revert ci.yml changes

* Use multiple PHP versions

* Update ci.yml

* Don't use PHP 8 with Laravel 10 in CI

* Update ci.yml

* Remove L6 and L8 support

* Use single PHP version in CI

* Update ci.yml

* Change matrix in ci.yml

* swap laravel 9 & 10

* Update README.md

---------

Co-authored-by: Samuel Štancl <samuel@archte.ch>
2023-02-16 11:34:42 +01:00

30 lines
692 B
JSON

{
"name": "stancl/virtualcolumn",
"description": "Eloquent virtual column.",
"license": "MIT",
"authors": [
{
"name": "Samuel Štancl",
"email": "samuel.stancl@gmail.com"
}
],
"autoload": {
"psr-4": {
"Stancl\\VirtualColumn\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stancl\\VirtualColumn\\Tests\\": "tests/"
}
},
"require": {
"illuminate/support": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}