-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: merge develop into feature/number-field (#528)
* badge * Feature/set custom edit exec button (#490) * fix one test * Setting current dependencies * use custom exec button on edit action * Update Model.php * remove class, use seed Co-authored-by: Imants Horsts <[email protected]> * model default add field property (#454) * use the object default add field property * no need for double brackets. * force tests Co-authored-by: Romans Malinovskis <[email protected]> Co-authored-by: Imants Horsts <[email protected]> * Fix empty array condition (#498) * more tests * Apply fixes from StyleCI * better implementation for addFields() and test cases (#499) * better implementation for addFields() and test cases * Apply fixes from StyleCI * use shorthand method * simplify code * implement `exprNow()` method. Rely on dsql PR. * Apply fixes from StyleCI * pass * add docs Co-authored-by: Romans Malinovskis <[email protected]> * Fix/ Small Action related fix (#502) * Fix/ Small Action related fix - Set Edit action exec button labe lto 'Save' by default - Set Edit action exec button colot to blue by default - Set default description for Add action in model - Add method to retreive model from Action * Apply fixes from StyleCI * fix comment Co-authored-by: Imants Horsts <[email protected]> * update multiple delete example (#503) * now supports multiple filter options in getFields() * Apply fixes from StyleCI * Accept any DateTimeInterface impl. for datetime (#505) * Accept any DateTimeInterface impl. for datetime * Fix DateTime::getTimezone method name * Fix setTimezone for any instance of DateTimeInterface * Add microseconds persistence support for datetime/time types + fix normalization/cloning issue (#504) * Fix datetime normalization cloning * Add microseconds persistence support for datetime/time types Co-authored-by: Imants Horsts <[email protected]> * include comment about hooks and example how to execute them (#510) * update composer * Update release-drafter.yml * Update bundler.yml * Fix hasOne relation seed processing. It should replace not merge. (#512) * New method $model->getTitles() (#513) * Implement `getTitles()` method * Apply fixes from StyleCI * Update unit-tests.yml * migration to migrator * rename addHook to onHook (#514) * fix #944 (#516) * allow dots in table names, fix #515, fix #517 * Apply fixes from StyleCI * Do not fail-fast PHP test matrix (#522) * Simplify code (#519) * Update release-drafter.yml * Update release-drafter.yml * Fix hook trait usage (#525) * Hook args must be an array * Fix hook onHook() usage * Apply fixes from StyleCI * initialization of fields and handling of expressions * Apply fixes from StyleCI * introduce hasPersistence and retrieval of setting * Apply fixes from StyleCI Co-authored-by: Imants Horsts <[email protected]> Co-authored-by: Mimo <[email protected]> Co-authored-by: Romans Malinovskis <[email protected]> Co-authored-by: Alain Belair <[email protected]> Co-authored-by: DarkSide <[email protected]> Co-authored-by: Michael Voříšek <[email protected]>
- Loading branch information
1 parent
a8bd575
commit 48aa012
Showing
47 changed files
with
739 additions
and
545 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
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,39 +1,69 @@ | ||
{ | ||
"name": "atk4/data", | ||
"type": "library", | ||
"description": "Agile Data - Database access abstraction framework", | ||
"keywords": ["framework", "orm", "query", "active record", "sql", "builder", "nosql", "mongodb", "mysql", "postgresql"], | ||
"homepage": "https://github.com/atk4/data", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Romans Malinovskis", | ||
"email": "[email protected]", | ||
"homepage": "https://nearly.guru/" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.2.0", | ||
"ext-intl": "*", | ||
"name": "atk4/data", | ||
"type": "library", | ||
"description": "Agile Data - Database access abstraction framework", | ||
"keywords": [ | ||
"framework", | ||
"orm", | ||
"query", | ||
"active record", | ||
"sql", | ||
"builder", | ||
"nosql", | ||
"mongodb", | ||
"mysql", | ||
"oracle", | ||
"postgresql" | ||
], | ||
"homepage": "https://github.com/atk4/data", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Romans Malinovskis", | ||
"email": "[email protected]", | ||
"homepage": "https://nearly.guru/" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.2.0", | ||
"ext-intl": "*", | ||
"ext-json": "*", | ||
"ext-mbstring": "*", | ||
"atk4/core": "dev-develop", | ||
"atk4/dsql": "dev-develop" | ||
}, | ||
"require-dev": { | ||
"atk4/schema": "dev-develop", | ||
"phpunit/phpunit": "<6", | ||
"phpunit/dbunit": ">=1.2", | ||
"phpunit/phpcov": "*", | ||
"codeclimate/php-test-reporter": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": {"atk4\\data\\":"src/"} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"atk4\\data\\tests\\":"tests/", | ||
"atk4\\data\\tests\\smbo\\":["tests/smbo","tests/smbo/lib"] | ||
} | ||
"atk4/core": "dev-develop", | ||
"atk4/dsql": "dev-develop" | ||
}, | ||
"require-release": { | ||
"php": ">=7.2.0", | ||
"ext-intl": "*", | ||
"atk4/core": "^2.0", | ||
"atk4/dsql": "^2.0" | ||
}, | ||
"require-dev": { | ||
"atk4/schema": "dev-develop", | ||
"phpunit/phpunit": "<6", | ||
"phpunit/dbunit": ">=1.2", | ||
"phpunit/phpcov": "*", | ||
"codeclimate/php-test-reporter": "*" | ||
}, | ||
"require-dev-release": { | ||
"atk4/schema": "^2.0", | ||
"phpunit/phpunit": "<6", | ||
"phpunit/dbunit": ">=1.2", | ||
"phpunit/phpcov": "*", | ||
"codeclimate/php-test-reporter": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"atk4\\data\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"atk4\\data\\tests\\": "tests/", | ||
"atk4\\data\\tests\\smbo\\": [ | ||
"tests/smbo", | ||
"tests/smbo/lib" | ||
] | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.