forked from ajayrandhawa/User-Management-PHP-MYSQL
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.64 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
52
53
{
"autoload": {
"psr-4": {
"App\\": "src/",
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"ext-pdo": "*",
"doctrine/orm": "^3",
"doctrine/dbal": "^4",
"doctrine/migrations": "*",
"league/plates": "^3",
"psr/http-message": "^2",
"nyholm/psr7": "^1",
"vlucas/phpdotenv": "^5",
"symfony/http-foundation": "^7",
"symfony/routing": "^7",
"symfony/http-kernel": "^7",
"symfony/config": "^7",
"symfony/cache": "^7",
"symfony/psr-http-message-bridge": "^7",
"fakerphp/faker": "^1"
},
"scripts": {
"doctrine": "php bin/doctrine",
"schema:refresh": "php bin/doctrine orm:schema-tool:update --force",
"db:refresh": "@schema:refresh && @doctrine app:load-fixtures",
"migration": "php ./vendor/bin/doctrine-migrations",
"migrate": "@migration",
"serve": "php -S localhost:8000 -t public/",
"selenium:start": "selenium-standalone start",
"codecept": "php ./vendor/bin/codecept",
"acceptance:test": "@selenium:start && @codecept run"
},
"require-dev": {
"symfony/var-dumper": "^7",
"filp/whoops": "^2",
"phpspec/prophecy": "^1",
"doctrine/data-fixtures": "^1.7",
"codeception/codeception": "^5",
"codeception/module-phpbrowser": "*",
"codeception/module-asserts": "*",
"php-webdriver/webdriver": "^1",
"codeception/module-webdriver": "^4.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}