You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exment uses version 10.X for PHPUnit.
If there is a description about "phpunit / phpunit" in require-dev of composer.json in the root folder, please modify it as follows.
"phpunit/phpunit": "~10.1",
And execute this command.
composer update
If the root of your project contains phpunit.xml, open the file.
After that, if the following description is included, comment it out.
Execute Lint (PHPStan / Laratisan) and perform syntax check etc.
*Some syntaxes have some deficiencies that do not affect the execution results. It is being corrected at any time.
Execute the following command and check that there are no omissions in the translation file settings of the language file.
*If nothing is displayed as a result of execution, the process ends normally. If there is a translation omission, the translation target will be listed.
php artisan exment: checklang
About Testdata
User
id
user_code
test password
1
admin
adminadmin
2
user1
user1user1
3
user2
user2user2
4
user3
user3user3
5
company1-userA
company1-userA
6
dev0-userB
dev0-userB
7
dev1-userC
dev1-userC
8
dev1-userD
dev1-userD
9
dev2-userE
dev2-userE
10
company2-userF
company2-userF
Organization
id
organization_code
parent_organization_code
users
1
company1
-
company1-userA
2
dev
company1
dev0-userB
3
manage
company1
-
4
dev1
dev
dev1-userC,dev1-userD
5
dev2
dev
dev2-userE
6
company2
-
company2-userF
7
company2-a
company2
-
RoleGroup
id
role_group_name
organizations
users
permissions
1
data_admin_group
-
user1
Can access all data
2
user_organization_admin_group
-
-
Can manage user and organization
3
information_manage_group
-
-
Can manage information
4
user_group
dev
user2,user3
Please look bottom
CustomTable
id
table_name
description
column_pattern
9
custom_value_edit_all
user_group users can edit all_custom_value.
1
10
custom_value_view_all
user_group users can view all_custom_value.
1
11
custom_value_access_all
user_group users can access all_custom_value.
1
12
custom_value_edit
user_group users can edit custom_value. And has workflow.
1
13
custom_value_view
user_group users can view custom_value.
1
14
no_permission
user_group users don't have permission.
1
15
parent_table
The parent table for the 1:n relationship.
1
16
child_table
The child table for the 1:n relationship.
1
17
pivot_table
A table that has both parent_table and child_table in a custom column.
2
18
parent_table_n_n
The parent table for the n:n relationship.
1
19
child_table_n_n
The child table for the n:n relationship.
1
20
pivot_table_n_n
A table that has both parent_table_n_n and child_table_n_n in a custom column.
2
21
parent_table_select
This is the referenced table of the table related by the custom column "select_table".
1
22
child_table_select
The referencing table of the table associated with the custom column "select_table".
1
23
pivot_table_select
A table that has both parent_table_select and child_table_select in a custom column.