Skip to content

Commit

Permalink
update file
Browse files Browse the repository at this point in the history
  • Loading branch information
juancristobalgd1 committed Feb 29, 2024
1 parent e8607bc commit 06dad55
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 37 deletions.
50 changes: 13 additions & 37 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,38 +1,14 @@
vendor
composer.lock

#-------------------------
# IDE / Development Files
#-------------------------

# phpenv local config
.php-version

# Jetbrains editors (PHPStorm, etc)
.idea/
*.iml

# Netbeans
nbproject/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
.nb-gradle/

# Sublime Text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
*.sublime-workspace
*.sublime-project
.phpintel
/api/

# Visual Studio Code
.vscode/

/results/
/.phpunit.cache
/node_modules
/public/build
/public/storage
/storage/*.key
/vendor
.env
.env.backup
.env.production
.phpunit.result.cache
npm-debug.log
yarn-error.log
/.idea
/.vscode
31 changes: 31 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory>tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>app</directory>
</include>
</source>
<php>
<env name="APP_ENVIRONMENT" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/>
</php>
</phpunit>
14 changes: 14 additions & 0 deletions storage/logs/axm-errors.log
Original file line number Diff line number Diff line change
Expand Up @@ -380,3 +380,17 @@ Date: 29-02-2024 11:44:27 Axm Framework version: 1 PHP version: 8.2.4
••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••


##Error: Class "Whoops\Run" not found
trace:

#0 C:\xampp\htdocs\aa\axm\core\HandlerErrors.php(23): handleWebError(2, 'require(C:\\xamp...', 'C:\\xampp\\htdocs...', 41)
#1 C:\xampp\htdocs\aa\axm\core\HandlerErrors.php(8): handlerErrors(2, 'require(C:\\xamp...', 'C:\\xampp\\htdocs...', 41)
#2 C:\xampp\htdocs\aa\axm\core\bootstrap.php(41): {closure}(2, 'require(C:\\xamp...', 'C:\\xampp\\htdocs...', 41)
#3 C:\xampp\htdocs\aa\axm\core\bootstrap.php(41): require('C:\\xampp\\htdocs...')
#4 C:\xampp\htdocs\aa\axm\public\index.php(16): require_once('C:\\xampp\\htdocs...')
#5 C:\xampp\htdocs\aa\axm\index.php(12): require_once('C:\\xampp\\htdocs...')
#6 {main}
Date: 29-02-2024 12:43:38 Axm Framework version: 1 PHP version: 8.2.4
••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••


0 comments on commit 06dad55

Please sign in to comment.