Skip to content

Commit f56ef6e

Browse files
authored
Merge pull request #2 from berkanumutlu/google-map
Added google map view with Google Javascript API
2 parents b2aec72 + 6b15a1a commit f56ef6e

File tree

15 files changed

+77407
-75595
lines changed

15 files changed

+77407
-75595
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.js linguist-detectable=false
2+
*.css linguist-detectable=false

.github/workflows/php.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: PHP Composer
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Validate composer.json and composer.lock
21+
run: composer validate --strict
22+
23+
- name: Cache Composer packages
24+
id: composer-cache
25+
uses: actions/cache@v3
26+
with:
27+
path: vendor
28+
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
29+
restore-keys: |
30+
${{ runner.os }}-php-
31+
32+
- name: Install dependencies
33+
run: composer install --prefer-dist --no-progress
34+
35+
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
36+
# Docs: https://getcomposer.org/doc/articles/scripts.md
37+
38+
# - name: Run test suite
39+
# run: composer run-script test

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
</div>
66
<br>
77
<p align="center">
8-
<a href="https://github.com/berkanumutlu/php-turkiye-il-ilce-adres/releases/tag/v1.0.0" target="_blank" rel="nofollow"><img src="https://img.shields.io/github/v/release/berkanumutlu/php-turkiye-il-ilce-adres?logo=github" alt="PHP Sitemap Generator Release"></a>
9-
<a href="https://github.com/berkanumutlu/php-turkiye-il-ilce-adres/stargazers" rel="nofollow"><img src="https://img.shields.io/github/stars/berkanumutlu/php-turkiye-il-ilce-adres?style=flat&logo=github" alt="PHP Sitemap Generator Repo stars"></a>
8+
<a href="https://github.com/berkanumutlu/php-turkiye-il-ilce-adres/releases/tag/v1.0.1" target="_blank" rel="nofollow"><img src="https://img.shields.io/github/v/release/berkanumutlu/php-turkiye-il-ilce-adres?logo=github" alt="PHP Türkiye il ilçe adres Release"></a>
9+
<a href="https://github.com/berkanumutlu/php-turkiye-il-ilce-adres/stargazers" rel="nofollow"><img src="https://img.shields.io/github/stars/berkanumutlu/php-turkiye-il-ilce-adres?style=flat&logo=github" alt="PHP Türkiye il ilçe adres Repo stars"></a>
1010
<a href="https://github.com/berkanumutlu/php-turkiye-il-ilce-adres/blob/master/LICENSE" target="_blank" rel="nofollow"><img src="https://img.shields.io/github/license/berkanumutlu/laravel-example-app" alt="License"></a>
1111
<a href="https://www.php.net/releases/5_6_0.php" target="_blank" rel="nofollow"><img src="https://img.shields.io/badge/PHP->=v5.6-777BB4?logo=php&logoColor=white&labelColor=777BB4" alt="PHP Version"></a>
1212
<a href="https://getbootstrap.com/docs/5.3/getting-started/introduction/" target="_blank" rel="nofollow"><img src="https://img.shields.io/badge/Bootstrap-v5.3.3-7952B3?logo=bootstrap&logoColor=white&labelColor=7952B3" alt="Bootstrap Version"></a>

db/cities.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
-- https://www.phpmyadmin.net/
44
--
55
-- Anamakine: mysql
6-
-- Üretim Zamanı: 09 May 2024, 10:53:29
7-
-- Sunucu sürümü: 5.7.43
8-
-- PHP Sürümü: 8.2.12
6+
-- Üretim Zamanı: 11 May 2024, 18:42:07
7+
-- Sunucu sürümü: 5.7.44
8+
-- PHP Sürümü: 8.2.19
99

1010
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
1111
START TRANSACTION;

db/districts.sql

Lines changed: 621 additions & 618 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)