-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
51 lines (51 loc) · 1.34 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "parsampsh/adminx",
"description": "Adminx is a library to create automatic admin panel for Laravel web applications",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/parsampsh/adminx",
"authors": [
{
"name": "Parsa Shahmaleki",
"email": "parsampsh@gmail.com",
"homepage": "https://github.com/parsampsh"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "^8.0",
"doctrine/dbal": "^3.0"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.3",
"friendsofphp/php-cs-fixer": "^3",
"phpstan/phpstan": "^0.12.83"
},
"autoload": {
"psr-4": {
"Adminx\\": "src/Adminx"
},
"files": [
"src/Adminx/init_user_model.php"
]
},
"autoload-dev": {
"psr-4": {
"Adminx\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Adminx\\AdminxServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"format": "PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer fix",
"all": "composer format && composer test",
"phpstan": "vendor/bin/phpstan.phar analyse src tests"
}
}