Download the PHP package amethyst/core without Composer
On this page you can find all versions of the php package amethyst/core. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package core
Config
This is the core of all Amethyst packages.
Requirements
- PHP from 8.1
Installation
You can install it via Composer by typing the following command:
The package will automatically register itself.
Mapping the hell out of it
Amethyst takes a lot of advantages by mapping all models, relations and attributes; it does soo much that it's a requirement for every package:
- Each instance of Model must be converted in a readable string (e.g. classname, or morph name) and viceversa.
- Given an instance of Model it should be possible to retrieve all relations.
- Given an instance of Model it should be possibile to retrieve all attributes.
Note: It's important to notice that we are refering to an instance of Model instead of class of Model.
What are the benefits then?
Because having this kind of information will make a lot of things easy (for e.g. auto joins, creating views)
How it's done and how extend it
All amethyst packages are automatically mapped, that's because the mapping use the configuration under amethyst
to retrieve all models
This is done by using the package eloquent-mapper.
How interact with the data
There are two ways to interact with the data: Through code or with http calls
Code
Http calls
Each data has the following operation:
- 'Create a new record'
- 'Retrieve a single record'
- 'Update a single ecord'
- 'Delete a single record'
- 'Show multiple records'
- 'Remove multiple records'
- 'Update multiple records'
How customize the data
One of the key package used to handle data is lem. This package provide a way to define a schema, validate, authorize, serialize and handle errors; all of this incapsulated by a class, called the Manager
.
https://github.com/amethyst-php/cli
Testing
- Clone this repository
- Copy the default
phpunit.xml.dist
tophpunit.xml
- Change the environment variables as you see fit
- Launch
./vendor/bin/phpunit
All versions of core with dependencies
railken/bag Version ^2.0
railken/eloquent-mapper Version 0.4.*
laravel/framework Version 9.* | 10.*
league/fractal Version ^0.17.0
railken/lem Version ^4.0
railken/cacheable Version 0.2.*
railken/eloquent-instance Version ^2.0
laravel/helpers Version ^1.2
doctrine/inflector Version ^2.0