-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.06 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
{
"name": "amirrezaeb/url-shortener",
"description": "URL Shortener Along With FrontEnd And BackEnd by PHP OOP[MVC] V2.0",
"authors": [
{
"name": "Amirreza Ebrahimi",
"email": "[email protected]"
}
],
"require": {
"vlucas/phpdotenv": "^5.6",
"illuminate/database": "^11.27",
"laravel/serializable-closure": "^1.3",
"phpmailer/phpmailer": "^6.9",
"amirezaeb/heroqr": "^1.0",
"ext-openssl": "*"
},
"autoload": {
"psr-4": {
"App\\": "App/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"serve": "php config/serve.php",
"php-unit": "php vendor/bin/phpunit --testdox --colors=always",
"migrate": "php database/migration.php",
"rollback": "php database/migration.php --rollback"
},
"config": {
"process-timeout": 0
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"mockery/mockery": "^1.6"
}
}