Skip to content

Commit 83c0b6d

Browse files
author
Andrey Helldar
authored
Merge pull request #34 from Laravel-Lang/2.x
[2.x] Upgrade to new structure
2 parents 2a6b471 + 7c4be26 commit 83c0b6d

File tree

358 files changed

+40986
-10608
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

358 files changed

+40986
-10608
lines changed

.gitattributes

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
* text=auto
22

33
.github/ export-ignore
4-
.run/ export-ignore
4+
tests/ export-ignore
55

6+
app/ export-ignore
67
docs/ export-ignore
7-
tests/ export-ignore
8+
excludes/ export-ignore
89

9-
.codecov.yml export-ignore
10+
.editorconfig export-ignore
11+
.env.example export-ignore
1012
.gitattributes export-ignore
1113
.gitignore export-ignore
12-
.styleci.yml export-ignore
1314

14-
phpunit.php export-ignore
15+
package.json export-ignore
16+
1517
phpunit.xml export-ignore

.github/workflows/phpunit.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
name: phpunit
2-
on: [ push, pull_request ]
2+
3+
on: [ push ]
4+
5+
permissions: read-all
36

47
jobs:
5-
build:
8+
laravel:
69
runs-on: ubuntu-latest
710

811
name: PHP Unit
@@ -16,9 +19,11 @@ jobs:
1619
with:
1720
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv, json
1821
coverage: none
22+
env:
23+
COMPOSER_TOKEN: ${{ secrets.COMPOSER_TOKEN }}
1924

2025
- name: Install dependencies
2126
run: composer update --prefer-stable --prefer-dist --no-progress --no-interaction
2227

2328
- name: Execute tests
24-
run: sudo vendor/bin/phpunit
29+
run: sudo vendor/bin/phpunit --colors=always

.github/workflows/update.yml

+4-28
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
branches:
55
- main
66

7+
permissions: write-all
8+
79
jobs:
810
update:
911
runs-on: ubuntu-latest
@@ -33,43 +35,19 @@ jobs:
3335
run: |
3436
IS_DIRTY=1
3537
36-
php app/keys.php
38+
vendor/bin/lang sync
3739
3840
{ git add . && git commit -a -m "Updating translations keys"; } || IS_DIRTY=0
3941
4042
echo ::set-output name=is_dirty::${IS_DIRTY}
4143
42-
- name: Updating referents
43-
id: referents
44-
if: success()
45-
run: |
46-
IS_DIRTY=1
47-
48-
php app/referents.php
49-
50-
{ git add . && git commit -a -m "Updating the docs/referents.md file"; } || IS_DIRTY=0
51-
52-
echo ::set-output name=is_dirty::${IS_DIRTY}
53-
54-
- name: Checking for excludes
55-
id: excludes
56-
if: success()
57-
run: |
58-
IS_DIRTY=1
59-
60-
php app/excludes.php
61-
62-
{ git add . && git commit -a -m "Updating excludes files"; } || IS_DIRTY=0
63-
64-
echo ::set-output name=is_dirty::${IS_DIRTY}
65-
6644
- name: Update statuses
6745
id: status
6846
if: success()
6947
run: |
7048
IS_DIRTY=1
7149
72-
php app/status.php
50+
vendor/bin/lang status
7351
7452
{ git add . && git commit -a -m "Updated status of translations"; } || IS_DIRTY=0
7553
@@ -79,9 +57,7 @@ jobs:
7957
uses: ad-m/github-push-action@master
8058
if: |
8159
success() && (
82-
steps.excludes.outputs.is_dirty == 1 ||
8360
steps.keys.outputs.is_dirty == 1 ||
84-
steps.referents.outputs.is_dirty == 1 ||
8561
steps.status.outputs.is_dirty == 1
8662
)
8763
with:

.gitignore

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
.idea/
2-
3-
vendor/
2+
_site/
43
build/
4+
node_modules/
5+
vendor/
56

7+
.cache
8+
.DS_Store
9+
.env
10+
.php_cs.cache
11+
.phpintel
12+
.temp
13+
14+
*.bak
615
*.cache
716
*.clover
8-
*.lock
917
*.orig
18+
19+
composer.lock
20+
package-lock.json

app/.env.example

-7
This file was deleted.

app/.gitignore

-3
This file was deleted.

app/add.php

-16
This file was deleted.

app/bootstrap/app.php

-7
This file was deleted.

app/bootstrap/autoload.php

-5
This file was deleted.

app/excludes.php

-10
This file was deleted.

app/keys.php

-10
This file was deleted.

app/main/Application.php

-87
This file was deleted.

app/main/Concerns/Contains.php

-38
This file was deleted.

0 commit comments

Comments
 (0)